Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit f1a329d

Browse files
committed
[[ WindowsCI ]] Don't pause configure script on warning
This patch ensures that if we are running on Travis, the configure script does not pause for warnings as this requires user input and we want the build to continue even if there are warnings.
1 parent 1f22797 commit f1a329d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

configure.bat

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ IF EXIST "%programfiles(x86)%\Microsoft Speech SDK 5.1\*" (
5959
)
6060

6161
REM Pause so any warnings can be seen
62-
IF %warnings% NEQ 0 PAUSE
62+
IF %TRAVIS_OS_NAME%=="" (
63+
IF %warnings% NEQ 0 PAUSE
64+
)
6365

6466
REM Run the configure step
6567
%python% config.py --platform win-%TARGET_ARCH% %extra_options% %gypfile%

0 commit comments

Comments
 (0)