Minor fix

This commit is contained in:
Vladimir Safonkin 2021-02-03 15:17:48 +03:00
parent 843b5197ce
commit 6ade6c061b

View File

@ -8,11 +8,11 @@ $windowsDotnetPaths = @("$env:LocalAppData\Microsoft\dotnet/*", "$env:ProgramFil
$pathsToClear = @()
if ($os -eq "linux") {
if ($os -eq "Linux") {
$pathsToClear = $linuxDotnetPaths
} elseif ($os -eq "macOS") {
$pathsToClear = $macOSDotnetPaths
} elseif ($os -eq "windows") {
} elseif ($os -eq "Windows") {
$pathsToClear = $windowsDotnetPaths
}