mirror of
https://github.com/actions/setup-dotnet.git
synced 2024-11-22 19:41:08 +07:00
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
Block a user