Skip to content

Commit

Permalink
Fix ProcessManager to use ToolPathResolver to find mono executable.
Browse files Browse the repository at this point in the history
  • Loading branch information
MadMathMike authored and matkoch committed Feb 17, 2018
1 parent 6718b08 commit cfc6f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Nuke.Core/Tooling/ProcessManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public virtual IProcess StartProcess(ToolSettings toolSettings, ProcessSettings
{
argumentsForExecution = $"{toolPath.DoubleQuoteIfNeeded()} {argumentsForExecution}";
argumentsForOutput = $"{toolPath.DoubleQuoteIfNeeded()} {argumentsForOutput}";
toolPath = "/usr/bin/mono";
toolPath = ToolPathResolver.GetPathExecutable("mono");
}
#endif

Expand Down

0 comments on commit cfc6f44

Please sign in to comment.