Skip to content

Commit 5306333

Browse files
author
Vladimir Safonkin
authored
Merge pull request #213 from al-cheb/al-cheb/move-dotnet-dir
Move toolcache folder
2 parents 9647326 + 5070486 commit 5306333

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

__tests__/clear-toolcache.ps1

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
$dotnetPaths = @{
2-
Linux = @("/usr/share/dotnet")
3-
macOS = @("$env:HOME/.dotnet")
4-
Windows = @("$env:ProgramFiles\dotnet/*",
5-
"$env:LocalAppData\Microsoft\dotnet/*")
2+
Linux = "/usr/share/dotnet"
3+
macOS = "$env:HOME/.dotnet"
4+
Windows = "$env:ProgramFiles\dotnet", "$env:LocalAppData\Microsoft\dotnet"
65
}
76

8-
foreach ($path in $dotnetPaths[$args[0]]) {
9-
if (Test-Path $path) {
10-
Write-Host "Clear $path path"
11-
Remove-Item $path -Recurse -Force
7+
foreach ($srcPath in $dotnetPaths[$args[0]]) {
8+
if (Test-Path $srcPath) {
9+
Write-Host "Move $srcPath path"
10+
$dstPath = Join-Path ([IO.Path]::GetTempPath()) ([IO.Path]::GetRandomFileName())
11+
Move-Item -Path $srcPath -Destination $dstPath
1212
}
1313
}

0 commit comments

Comments
 (0)