build.cmd 514 Bytes
Newer Older
CED SA's avatar
CED SA committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
@echo off
cd DOC-dt
echo =================
echo == Building DT == 
echo =================
call yarn push
if errorlevel 1 (
echo:
echo An error occurred during the yarn push on DOC-DT. Build process interrupted!
cd .. 
exit /b 1
)
cd ..
echo:
echo ==================
echo == Building WCN ==
echo ==================
cd DOC-wcn
call yarn serve
if errorlevel 1 (
echo:
echo An error occurred during the yarn serve on DOC-WCN. Build process interrupted!
cd .. 
exit /b 1
)
cd ..
echo:
echo == Core build successful! ==