Skip to content

Commit

Permalink
Issue #28573: Fixes issue with nested if blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
zooba committed Nov 15, 2016
2 parents eb9e7b4 + 14e69fc commit 8bd4b24
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Tools/msi/buildrelease.bat
Original file line number Diff line number Diff line change
Expand Up @@ -139,13 +139,13 @@ if not "%CERTNAME%" EQU "" (
) else (
set CERTOPTS=
)

if not "%PGO%" EQU "" (
set PGOOPTS=--pgo-job "%PGO%"
) else (
set PGOOPTS=
)
if not "%SKIPBUILD%" EQU "1" (
if "%PGO%" EQU "" (
set PGOOPTS=
) else (
set PGOOPTS=--pgo --pgojob "%PGO%"
)
@echo call "%PCBUILD%build.bat" -e -p %BUILD_PLAT% -t %TARGET% %CERTOPTS% %PGOOPTS%
@call "%PCBUILD%build.bat" -e -p %BUILD_PLAT% -t %TARGET% %CERTOPTS% %PGOOPTS%
@if errorlevel 1 exit /B
@rem build.bat turns echo back on, so we disable it again
Expand Down

0 comments on commit 8bd4b24

Please sign in to comment.