Skip to content

Commit

Permalink
Merge pull request #1577 from VladiStep/patch-1
Browse files Browse the repository at this point in the history
A fix of "ExportAllStrings.csx".
  • Loading branch information
colinator27 authored Dec 22, 2023
2 parents e2cbf65 + 737b507 commit 30f63af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if (exportFolder is null)

string stringsPath = Path.Combine(exportFolder, "strings.txt");
//Overwrite Check One
if (File.Exists(stringsPath)
if (File.Exists(stringsPath))
{
bool overwriteCheckOne = ScriptQuestion(@"A 'strings.txt' file already exists.
Would you like to overwrite it?");
Expand Down

0 comments on commit 30f63af

Please sign in to comment.