Skip to content

Commit

Permalink
Merge pull request #744 from haf/patch-1
Browse files Browse the repository at this point in the history
fixes #740
  • Loading branch information
forki committed Apr 7, 2015
2 parents 7385339 + c2a447f commit b5ebba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/FakeLib/ProcessHelper.fs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let startedProcesses = HashSet()
/// [omit]
let start (proc : Process) =
if isMono && proc.StartInfo.FileName.ToLowerInvariant().EndsWith(".exe") then
proc.StartInfo.Arguments <- "\"" + proc.StartInfo.FileName + "\" " + proc.StartInfo.Arguments
proc.StartInfo.Arguments <- "--debug \"" + proc.StartInfo.FileName + "\" " + proc.StartInfo.Arguments
proc.StartInfo.FileName <- "mono"

proc.Start() |> ignore
Expand Down

0 comments on commit b5ebba5

Please sign in to comment.