Suppress error messages from make.ps1 clean.

Also removed obsolete ./*/bin removal.
This commit is contained in:
Paul Chote
2021-01-24 13:56:11 +00:00
committed by reaperrr
parent 4251ed69bb
commit 5e6dd50c3b

View File

@@ -36,9 +36,8 @@ function Clean-Command
}
dotnet clean /nologo
rm ./bin -r
rm ./*/bin -r
rm ./*/obj -r
Remove-Item ./bin -Recurse -ErrorAction Ignore
Remove-Item ./*/obj -Recurse -ErrorAction Ignore
Write-Host "Clean complete." -ForegroundColor Green
}