Skip to content

Commit 993eacc

Browse files
authored
Fix Write-Error on build failure. (#601)
1 parent 433e403 commit 993eacc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doBuild.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ function DoBuild
125125
}
126126
}
127127
catch {
128-
# Write-Error "dotnet build failed with error: $_"
129128
Write-Verbose -Verbose -Message "dotnet build failed with error: $_"
129+
Write-Error "dotnet build failed with error: $_"
130130
}
131131
finally {
132132
Pop-Location

0 commit comments

Comments
 (0)