KP-Liberation/build.bat

23 lines
426 B
Batchfile
Raw Normal View History

2017-07-24 19:59:19 +00:00
@echo off
2018-02-13 00:14:41 +00:00
rem Check that https://nodejs.org/en/download/ exists before continuing
where /q node
2017-07-24 19:59:19 +00:00
if ERRORLEVEL 1 (
2018-02-13 00:14:41 +00:00
echo node is missing. Ensure it is installed. It can be downloaded from:
echo https://nodejs.org/en/download/
2017-07-24 19:59:19 +00:00
timeout 30
exit /b
)
2018-02-13 00:14:41 +00:00
rem CD into build tool directory
cd %~dp0_tools
2017-07-24 19:59:19 +00:00
2018-02-13 00:14:41 +00:00
rem Install dependencies and build missions
call npm install --loglevel=error
call npx gulp
echo.
pause
exit /b