mirror of
https://github.com/rn10950/RetroZilla.git
synced 2024-11-11 02:10:17 +01:00
15 lines
307 B
Batchfile
15 lines
307 B
Batchfile
echo running > ..\buildbot-is-building
|
|
|
|
echo running: "%MOZILLABUILD%\msys\bin\bash" -c "hg/tinder/buildbot/build.sh %*"
|
|
"%MOZILLABUILD%\msys\bin\bash" -c "hg/tinder/buildbot/build.sh %*"
|
|
|
|
if %errorlevel% neq 0 (
|
|
set EXITCODE=1
|
|
) else (
|
|
set EXITCODE=0
|
|
)
|
|
|
|
del ..\buildbot-is-building
|
|
|
|
exit /b %EXITCODE%
|