Remove curl & add errors to bat files (#159)

This commit is contained in:
Oleg Korshul
2019-06-19 17:20:12 +03:00
committed by Alexey Golubev
parent 390ab3bcc8
commit 09c43b1179
9 changed files with 41 additions and 153 deletions

View File

@ -14,7 +14,13 @@ FOR /f "tokens=*" %%i in ('DIR /a:d /b *') DO (
ECHO %%i
if exist %%i/build.bat (
call %%i/build.bat
call %%i/build.bat || goto :error
)
)
exit
:error
echo "Failed with error #%errorlevel%."
exit /b %errorlevel%