add warning message to window batch file

This commit is contained in:
wing328
2017-05-15 16:11:51 +08:00
parent 2a70655c98
commit 5b250aa18f

View File

@@ -1,3 +1,11 @@
REM this batch file will loop through all the .bat files under bin\windows\
REM execute the script and check the error level to see if there's any error
echo IMPORTANT: this script should be run by the CI (e.g. appveyor) only. There's no need to run this script to update Petstore samples for all generators.
echo Please press CTRL+C to stop or the script will continue in 10 seconds.
timeout 10
for /f "delims=" %%i in ('dir /b ".\bin\windows\*.bat"') do (
CALL .\bin\windows\%%i