mirror of
https://github.com/actions/setup-dotnet.git
synced 2025-04-06 07:19:55 +00:00
Debug
This commit is contained in:
@ -1,29 +0,0 @@
|
||||
Write-Host $args[0]
|
||||
|
||||
$os = $args[0]
|
||||
|
||||
$linuxDotnetPaths = @("/usr/share/dotnet", "$env:HOME/.dotnet")
|
||||
$macOSDotnetPaths = @("$env:HOME/.dotnet")
|
||||
$windowsDotnetPaths = @("$env:LocalAppData\Microsoft\dotnet/*",
|
||||
"$env:ProgramFiles\dotnet/*",
|
||||
"$env:HOME\.dotnet")
|
||||
|
||||
$pathsToClear = @()
|
||||
|
||||
if ($os -eq "Linux") {
|
||||
$pathsToClear = $linuxDotnetPaths
|
||||
} elseif ($os -eq "macOS") {
|
||||
$pathsToClear = $macOSDotnetPaths
|
||||
} elseif ($os -eq "Windows") {
|
||||
Write-Host $env:LocalAppData
|
||||
$pathsToClear = $windowsDotnetPaths
|
||||
}
|
||||
|
||||
foreach ($path in $pathsToClear) {
|
||||
if (Test-Path $path) {
|
||||
Write-Host "Clear $path path"
|
||||
Remove-Item $path -Recurse -Force
|
||||
}
|
||||
}
|
||||
|
||||
dotnet --info
|
Reference in New Issue
Block a user