From 5e6dd50c3beec97cdf269756cc2fcbc962b393c7 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 24 Jan 2021 13:56:11 +0000 Subject: [PATCH] Suppress error messages from make.ps1 clean. Also removed obsolete ./*/bin removal. --- make.ps1 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/make.ps1 b/make.ps1 index bcd16380f2..f34ecd86fc 100644 --- a/make.ps1 +++ b/make.ps1 @@ -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 }