mirror of
https://github.com/actions/setup-dotnet.git
synced 2026-06-06 22:47:08 +00:00
Debug
This commit is contained in:
parent
a3d47e556c
commit
843b5197ce
1 changed files with 3 additions and 3 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue