TeaSpeak-Client/scripts/build_windows.bat

24 lines
465 B
Batchfile
Raw Normal View History

2019-10-25 19:51:40 -04:00
cd /d %~dp0\..
call npm run compile-tsc
if errorlevel 1 (
echo "Failed to compile tsc files"
exit /b %errorlevel%
)
call npm run compile-sass
if errorlevel 1 (
echo "Failed to compile sass files"
exit /b %errorlevel%
)
call npm run build-windows-64
if errorlevel 1 (
echo "Failed to compile build files"
exit /b %errorlevel%
)
call npm run package-windows-64
if errorlevel 1 (
echo "Failed to compile package files"
exit /b %errorlevel%
)