DocSpace-buildtools/build/build.bat

18 lines
257 B
Batchfile
Raw Normal View History

PUSHD %~dp0
2019-09-03 11:12:19 +00:00
call runasadmin.bat "%~dpnx0"
if %errorlevel% == 0 (
call start\stop.bat
2019-07-10 16:00:37 +00:00
PUSHD %~dp0..
2021-03-23 11:10:33 +00:00
echo "FRONT-END"
call build\build.frontend.bat
2021-03-23 11:10:33 +00:00
echo "BACK-END"
call build\build.backend.bat
start /b call build\start\start.bat
2019-09-03 11:12:19 +00:00
pause
)