10 lines
154 B
Batchfile
10 lines
154 B
Batchfile
@echo off
|
|
call build-server.bat
|
|
if errorlevel 1 exit /b 1
|
|
cd ..
|
|
|
|
call build-client.bat
|
|
if errorlevel 1 exit /b 1
|
|
cd ..
|
|
|
|
echo Build completed successfully. |