Skip to content

Commit

Permalink
Merge pull request #169 from Numpsy/quote_binlog_path
Browse files Browse the repository at this point in the history
Wrap the path to the binlog in quotes when building a test project
  • Loading branch information
nojaf authored Nov 23, 2023
2 parents 2bf6d6a + 45b026d commit 9a71b32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ let createProject (binLogPath: string) (tmpProjectDir: string) (framework: strin
.Wrap("dotnet")
.WithEnvironmentVariables(roDic)
.WithWorkingDirectory(tmpProjectDir)
.WithArguments($"build -bl:{binLogPath}")
.WithArguments($"build -bl:\"{binLogPath}\"")
.WithStandardOutputPipe(PipeTarget.ToStringBuilder(stdOutBuffer))
.WithStandardErrorPipe(PipeTarget.ToStringBuilder(stdErrBuffer))
.WithValidation(CommandResultValidation.ZeroExitCode)
Expand Down

0 comments on commit 9a71b32

Please sign in to comment.