Skip to content

Commit

Permalink
Bump version to 7.0.0-alpha009
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Feb 7, 2022
1 parent 690fc12 commit 67d2ad7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Paket.Core/Installation/UpdateProcess.fs
Original file line number Diff line number Diff line change
Expand Up @@ -241,9 +241,9 @@ let runDotnet arguments =
p.StartInfo.RedirectStandardError <- true

p.ErrorDataReceived.Add(fun d ->
if not (isNull d.Data) then tracefn d.Data)
if not (isNull d.Data) then tracefn "%s" d.Data)
p.OutputDataReceived.Add(fun d ->
if not (isNull d.Data) then tracefn d.Data)
if not (isNull d.Data) then tracefn "%s" d.Data)
p.Start() |> ignore
let standardOutput, errorOutput = p.StandardOutput.ReadToEnd(), p.StandardError.ReadToEnd()
p.WaitForExit()
Expand Down

0 comments on commit 67d2ad7

Please sign in to comment.