2018-09-04 18:02:54 +02:00

27 lines
428 B
Batchfile

@echo off
setlocal
echo This will update all changes from the corresponding GitHub repositories.
SET /P AREYOUSURE=Are you sure you want to do this? ([y]/n)
IF /I "%AREYOUSURE%"=="n" GOTO END
IF /I "%AREYOUSURE%"=="N" GOTO END
cd dependencies
call .\update-all.bat
cd ..
echo.
echo Updating zetaglest-code...
cd ..\..
git pull
Echo.
echo Updating zetaglest-data...
cd data
git pull
cd ..\
Echo.
cd mk\windows
:END
endlocal