Correct way to invoke ISCC in quiet mode!

This commit is contained in:
James Turner
2016-12-02 16:59:07 +00:00
parent 8e82d4e1fb
commit 5b969d37ec
+3 -3
View File
@@ -86,17 +86,17 @@ IF %IS_NIGHTLY_BUILD% EQU 1 (
REM FlightGear nightly: with fgdata, output filename would be "FlightGear-x.x.x-nightly-full.exe" REM FlightGear nightly: with fgdata, output filename would be "FlightGear-x.x.x-nightly-full.exe"
CALL :writeBaseConfig CALL :writeBaseConfig
CALL :writeNightlyFullConfig CALL :writeNightlyFullConfig
iscc FlightGear.iss iscc /Q FlightGear.iss
REM FlightGear nightly: without fgdata, output filename would be "FlightGear-x.x.x-nightly.exe" REM FlightGear nightly: without fgdata, output filename would be "FlightGear-x.x.x-nightly.exe"
CALL :writeBaseConfig CALL :writeBaseConfig
CALL :writeNightlyDietConfig CALL :writeNightlyDietConfig
iscc FlightGear.iss iscc /Q FlightGear.iss
) ELSE ( ) ELSE (
REM FlightGear release: with fgdata, output filename would be "FlightGear-x.x.x.exe" REM FlightGear release: with fgdata, output filename would be "FlightGear-x.x.x.exe"
CALL :writeBaseConfig CALL :writeBaseConfig
CALL :writeReleaseConfig CALL :writeReleaseConfig
iscc FlightGear.iss iscc /Q FlightGear.iss
) )
GOTO End GOTO End