From 823bdf14987e6deb2bc26a94fd889ee3be4c7bbe Mon Sep 17 00:00:00 2001 From: Paul Higinbotham Date: Thu, 27 Jan 2022 09:40:10 -0800 Subject: [PATCH] Fix Write-Error on build failure. --- doBuild.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doBuild.ps1 b/doBuild.ps1 index 98f1edc08..e5ba66e44 100644 --- a/doBuild.ps1 +++ b/doBuild.ps1 @@ -125,8 +125,8 @@ function DoBuild } } catch { - # Write-Error "dotnet build failed with error: $_" Write-Verbose -Verbose -Message "dotnet build failed with error: $_" + Write-Error "dotnet build failed with error: $_" } finally { Pop-Location