mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
Remove curl & add errors to bat files (#159)
This commit is contained in:
committed by
Alexey Golubev
parent
390ab3bcc8
commit
09c43b1179
@ -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%
|
||||
Reference in New Issue
Block a user