Skip to content

Commit

Permalink
Discard changes to RTWLibPlus/helpers/FileHelper.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
sargeantPig authored Dec 30, 2023
1 parent 8e8e113 commit 70897ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RTWLibPlus/helpers/FileHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static void Write(string path, string content)

public static string CurrDirPath(params string[] path)
{
string finpath = string.Empty;//Directory.GetCurrentDirectory();
string finpath = Directory.GetCurrentDirectory();
foreach (string s in path)
{
finpath = Path.Combine(finpath, s);
Expand Down

0 comments on commit 70897ea

Please sign in to comment.