2021-02-03 19:13:32 +07:00
|
|
|
$os = $args[0]
|
|
|
|
|
2021-02-03 19:31:11 +07:00
|
|
|
$linuxDotnetPaths = @("/usr/share/dotnet", "$env:HOME/.dotnet")
|
|
|
|
$macOSDotnetPaths = @("$env:HOME/.dotnet")
|
|
|
|
$windowsDotnetPaths = @("$env:LocalAppData\Microsoft\dotnet/*",
|
|
|
|
"$env:ProgramFiles\dotnet/*",
|
|
|
|
"$env:HOME\.dotnet")
|
2021-02-03 19:13:32 +07:00
|
|
|
|
|
|
|
$pathsToClear = @()
|
|
|
|
|
2021-02-03 19:17:48 +07:00
|
|
|
if ($os -eq "Linux") {
|
2021-02-03 19:13:32 +07:00
|
|
|
$pathsToClear = $linuxDotnetPaths
|
2021-02-03 19:15:56 +07:00
|
|
|
} elseif ($os -eq "macOS") {
|
2021-02-03 19:13:32 +07:00
|
|
|
$pathsToClear = $macOSDotnetPaths
|
2021-02-03 19:17:48 +07:00
|
|
|
} elseif ($os -eq "Windows") {
|
2021-02-03 19:31:11 +07:00
|
|
|
Write-Host $env:LocalAppData
|
2021-02-03 19:13:32 +07:00
|
|
|
$pathsToClear = $windowsDotnetPaths
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($path in $pathsToClear) {
|
|
|
|
if (Test-Path $path) {
|
2021-02-03 19:20:22 +07:00
|
|
|
Write-Host "Clear $path path"
|
2021-02-03 20:32:31 +07:00
|
|
|
Remove-Item $path -Recurse -Force
|
2021-02-03 19:13:32 +07:00
|
|
|
}
|
|
|
|
}
|