Debug
This commit is contained in:
parent
a3d47e556c
commit
843b5197ce
|
@ -8,11 +8,11 @@ $windowsDotnetPaths = @("$env:LocalAppData\Microsoft\dotnet/*", "$env:ProgramFil
|
|||
|
||||
$pathsToClear = @()
|
||||
|
||||
if ($os == "linux") {
|
||||
if ($os -eq "linux") {
|
||||
$pathsToClear = $linuxDotnetPaths
|
||||
} elseif ($os == "macOS") {
|
||||
} elseif ($os -eq "macOS") {
|
||||
$pathsToClear = $macOSDotnetPaths
|
||||
} elseif ($os == "windows") {
|
||||
} elseif ($os -eq "windows") {
|
||||
$pathsToClear = $windowsDotnetPaths
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue