Skip to content
This repository was archived by the owner on Jul 9, 2024. It is now read-only.

Commit 39cbf2c

Browse files
authored
Merge pull request #17 from Sevenanths/master
Update runner arguments to support Dolphin's new arguments style
2 parents 31ddbf7 + 32ff7b4 commit 39cbf2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DolphinBisectTool/RunBuild.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public void Run(string title = "")
2121
runner.StartInfo.FileName = starting_directory + string.Join("", match);
2222
runner.StartInfo.UseShellExecute = false;
2323
if (!string.IsNullOrEmpty(title))
24-
runner.StartInfo.Arguments = string.Format("/b /e \"{0}\"", title);
24+
runner.StartInfo.Arguments = string.Format("-b -e \"{0}\"", title);
2525
runner.Start();
2626
runner.WaitForExit();
2727
}

0 commit comments

Comments
 (0)