Skip to content

Commit

Permalink
Fix plugin failing to run when OU path contains space
Browse files Browse the repository at this point in the history
  • Loading branch information
maiko3tattun committed Mar 3, 2024
1 parent 8597a98 commit 38f3452
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenUtau.Core/Classic/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public void Run(string tempFile) {
}
var startInfo = new ProcessStartInfo() {
FileName = Executable,
Arguments = tempFile,
Arguments = $"\"{tempFile}\"",
WorkingDirectory = Path.GetDirectoryName(Executable),
UseShellExecute = UseShell,
};
Expand Down

0 comments on commit 38f3452

Please sign in to comment.