Skip to content
This repository has been archived by the owner on Apr 4, 2020. It is now read-only.

Commit

Permalink
Fix build race condition when signing
Browse files Browse the repository at this point in the history
  • Loading branch information
bricelam committed Dec 23, 2019
1 parent 05f06cd commit 70593b9
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 @@ -25,7 +25,7 @@ Task("Build")
ArgumentCustomization = args => args.Append("/nologo")
}
.SetConfiguration(configuration)
.SetMaxCpuCount(0)
.SetMaxCpuCount(signOutput ? null : 0)
.SetVerbosity(Verbosity.Minimal)
.WithProperty("Platform", platform)
.WithProperty("SignOutput", signOutput.ToString()));
Expand Down

0 comments on commit 70593b9

Please sign in to comment.