Skip to content

Commit 543aa8f

Browse files
authored
test: fix local integration tests on case-sensitive file-systems (#4231)
1 parent bc1e4f1 commit 543aa8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-test/common.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ BeforeAll {
8585
}
8686

8787
# We need to remove the package from cache or it won't re resolved properly
88-
Remove-Item -Path ~/.nuget/packages/$name/$packageVersion -Recurse -Force -ErrorAction SilentlyContinue
88+
Remove-Item -Path ~/.nuget/packages/$($name.ToLower())/$packageVersion -Recurse -Force -ErrorAction SilentlyContinue
8989
}
9090

9191
Remove-Item -Path "$PSScriptRoot/packages" -Recurse -Force -ErrorAction SilentlyContinue

0 commit comments

Comments
 (0)