mirror of
https://github.com/glest/glest-source.git
synced 2025-02-24 19:52:25 +01:00
27 lines
428 B
Batchfile
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 |