Skip to content

Commit

Permalink
fantomas
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinRansom committed Jun 6, 2023
1 parent 80307f7 commit f8b7618
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,9 @@ module internal Utilities =
psi.Arguments <- arguments
psi.CreateNoWindow <- true
psi.EnvironmentVariables.Remove("MSBuildSDKsPath") // Host can sometimes add this, and it can break things

for varname, value in environment do
psi.EnvironmentVariables.Add(varname,value) // Host can sometimes add this, and it can break things
psi.EnvironmentVariables.Add(varname, value) // Host can sometimes add this, and it can break things

psi.UseShellExecute <- false

Expand Down Expand Up @@ -292,7 +293,7 @@ module internal Utilities =
let args = "nuget list source --format detailed"

let success, stdOut, stdErr =
executeTool dotnetHostPath args scriptDirectory ["DOTNET_CLI_UI_LANGUAGE", "en-us"] timeout
executeTool dotnetHostPath args scriptDirectory [ "DOTNET_CLI_UI_LANGUAGE", "en-us" ] timeout
#if DEBUG
let diagnostics =
[|
Expand Down

0 comments on commit f8b7618

Please sign in to comment.