Skip to content

Commit

Permalink
fix output depots paths containing spaces not working
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoxiao921 committed Aug 30, 2024
1 parent daac3a5 commit 0547d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RoR2VersionSelector/RoR2VersionSelector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ private void UpdateDepotDownloaderArgs()
$"{ManifestArg} " +
$"-username {TextBoxUsername.Text} " +
$"{FileListArg} " +
$"-dir {OutputFolderPathArg}\"";
$"-dir \"{OutputFolderPathArg}\"\"";

TextBoxDepotDownloaderResult.Text = TextBoxDepotDownloadResultDefaultText;
TextBoxDepotDownloaderResult.Text += Environment.NewLine;
Expand Down

0 comments on commit 0547d31

Please sign in to comment.