Skip to content

Commit

Permalink
Merge pull request #2690 from FoothillSolutions/fix-nunit-console-run…
Browse files Browse the repository at this point in the history
…ner-issue

Fixes #2600
  • Loading branch information
yazeedobaid authored Aug 1, 2022
2 parents 817396e + 3b0da6e commit 76e9900
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/Fake.Core.Process/RawProc.fs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ module EnvMap =
else IMap.empty

let ofSeq l : EnvMap =
empty.AddRange(l |> Seq.map (fun (k, v) -> KeyValuePair<_,_>(k, v)))
empty
.AddRange(Environment.environVars () |> Seq.map (fun (k, v) -> KeyValuePair<_,_>(k, v)))
.AddRange(l |> Seq.map (fun (k, v) -> KeyValuePair<_,_>(k, v)))

let create() =
ofSeq (Environment.environVars ())
Expand Down

0 comments on commit 76e9900

Please sign in to comment.