Browse Source

Fix StartApp with args on macos

pull/438/head^2^2
ionite34 10 months ago
parent
commit
ad19b620c8
No known key found for this signature in database
GPG Key ID: B3404C5F3827849B
  1. 2
      StabilityMatrix.Core/Processes/ProcessRunner.cs

2
StabilityMatrix.Core/Processes/ProcessRunner.cs

@ -39,7 +39,7 @@ public static class ProcessRunner
if (Compat.IsMacOS)
{
startInfo.FileName = "open";
startInfo.Arguments = args.Prepend(path).ToString();
startInfo.Arguments = args.Prepend([path, "--args"]).ToString();
startInfo.UseShellExecute = true;
}
else

Loading…
Cancel
Save