File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
tests/FSharp.Test.Utilities Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -172,13 +172,13 @@ type FSLibPaths =
172172 { FSCOREDLLPATH : string }
173173
174174let getPackagesDir () =
175- let p = match Environment.GetEnvironmentVariable( " NUGET_PACKAGES" ) with
176- | null ->
177- match Environment.GetEnvironmentVariable( " USERPROFILE" ) with
178- | null -> Environment.GetEnvironmentVariable( " HOME" )
179- | p -> p
180- | path -> path
181- p ++ " .nuget " ++ " packages "
175+ match Environment.GetEnvironmentVariable( " NUGET_PACKAGES" ) with
176+ | null ->
177+ let path = match Environment.GetEnvironmentVariable( " USERPROFILE" ) with
178+ | null -> Environment.GetEnvironmentVariable( " HOME" )
179+ | p -> p
180+ path ++ " .nuget " ++ " packages "
181+ | path -> path
182182
183183let requireFile dir path =
184184 // Linux filesystems are (in most cases) case-sensitive.
You can’t perform that action at this time.
0 commit comments