Skip to content

Commit bb98997

Browse files
committed
Doh, fixed powershell script
1 parent bf14075 commit bb98997

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/Build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ForEach ($p in $client_projects) {
99
dotnet build "$($p.SourceDir)" -c Release
1010
Write-Host "Finished building $($p.Name)" -ForegroundColor Yellow
1111

12-
If ($LASTEXITCODE -ne 0)
12+
If ($LASTEXITCODE -ne 0) {
1313
$anyError = $True
1414
}
1515

@@ -51,7 +51,7 @@ ForEach ($p in $client_projects) {
5151
/p:TargetFrameworkVersionProperty="$($b.TargetFrameworkVersionProperty)" `
5252
/t:"Rebuild"
5353
}
54-
If ($LASTEXITCODE -ne 0)
54+
If ($LASTEXITCODE -ne 0) {
5555
$anyError = $True
5656
}
5757

0 commit comments

Comments
 (0)