Skip to content

Commit

Permalink
Merge pull request #39 from the-database/dev
Browse files Browse the repository at this point in the history
fix error with space in path
  • Loading branch information
the-database authored Sep 13, 2024
2 parents 604cddd + 316d033 commit aee9891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MangaJaNaiConverterGui/ViewModels/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ public async Task RunUpscale()
ProgressCurrentFileInArchive = 0;
ShowArchiveProgressBar = false;

var cmd = $@".\python\python\python.exe ""{Path.GetFullPath(@".\backend\src\run_upscale.py")}"" --settings {Program.AppStatePath}";
var cmd = $@".\python\python\python.exe ""{Path.GetFullPath(@".\backend\src\run_upscale.py")}"" --settings ""{Program.AppStatePath}""";
ConsoleQueueEnqueue($"Upscaling with command: {cmd}");
await RunCommand($@" /C {cmd}");

Expand Down

0 comments on commit aee9891

Please sign in to comment.