Skip to content

Commit

Permalink
Fix --log-to-file
Browse files Browse the repository at this point in the history
It's a flag, not an option that you give a path...
  • Loading branch information
martincostello committed Sep 18, 2024
1 parent 244c20a commit 5377ae6
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 @@ -201,7 +201,7 @@ Task("__RunMutationTests")

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

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

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

0 comments on commit 5377ae6

Please sign in to comment.