1
0
mirror of https://github.com/actions/setup-dotnet.git synced 2026-02-18 23:41:19 +01:00
This commit is contained in:
Vladimir Safonkin
2021-02-03 17:13:32 +03:00
parent c7eaa2ec00
commit 6b7d951977

View File

@@ -19,6 +19,6 @@ if ($os -eq "Linux") {
foreach ($path in $pathsToClear) {
if (Test-Path $path) {
Write-Host "Clear $path path"
Remove-Item $path -Recurse -Force
Remove-Item $path -Recurse -Force -ErrorAction SilentlyContinue
}
}