Skip to content

Commit 9c2c6c9

Browse files
authored
[build.ps1] Honor --SkipBuild with --IncludeNoAsserts (#82271)
Missed in my previous change. This makes it so that we donot build the no asserts toolchain if `--skipBuild` is passed with `--IncludeNoAsserts`
1 parent 2f920ce commit 9c2c6c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3451,7 +3451,7 @@ if (-not $SkipBuild) {
34513451

34523452
Install-HostToolchain
34533453

3454-
if ($IncludeNoAsserts) {
3454+
if (-not $SkipBuild -and $IncludeNoAsserts) {
34553455
Build-NoAssertsToolchain
34563456
}
34573457

0 commit comments

Comments
 (0)