We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f720d14 commit 5070486Copy full SHA for 5070486
__tests__/clear-toolcache.ps1
@@ -1,13 +1,13 @@
1
$dotnetPaths = @{
2
- Linux = @("/usr/share/dotnet")
3
- macOS = @("$env:HOME/.dotnet")
4
- Windows = @("$env:ProgramFiles\dotnet/*",
5
- "$env:LocalAppData\Microsoft\dotnet/*")
+ Linux = "/usr/share/dotnet"
+ macOS = "$env:HOME/.dotnet"
+ Windows = "$env:ProgramFiles\dotnet", "$env:LocalAppData\Microsoft\dotnet"
6
}
7
8
-foreach ($path in $dotnetPaths[$args[0]]) {
9
- if (Test-Path $path) {
10
- Write-Host "Clear $path path"
11
- Remove-Item $path -Recurse -Force
+foreach ($srcPath in $dotnetPaths[$args[0]]) {
+ if (Test-Path $srcPath) {
+ Write-Host "Move $srcPath path"
+ $dstPath = Join-Path ([IO.Path]::GetTempPath()) ([IO.Path]::GetRandomFileName())
+ Move-Item -Path $srcPath -Destination $dstPath
12
13
0 commit comments