Skip to content

Commit

Permalink
Fix switch name
Browse files Browse the repository at this point in the history
  • Loading branch information
martincostello authored Oct 28, 2023
1 parent 14ab6dd commit 84a7f07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Task("__RunMutationTests")

Information($"Running mutation tests for '{proj}'. Test Project: '{testProj}'");

var args = $"{strykerPath} --project {project} --test-project {testProj.FullPath} --break-at {score} --config-file {strykerConfig} --output {strykerOutput}/{project} --logToFile {strykerOutput}/{project}.log";
var args = $"{strykerPath} --project {project} --test-project {testProj.FullPath} --break-at {score} --config-file {strykerConfig} --output {strykerOutput}/{project} --log-to-file {strykerOutput}/{project}.log";

var result = StartProcess("dotnet", args);
if (result != 0)
Expand Down

0 comments on commit 84a7f07

Please sign in to comment.