Server/updateSubmodule.bat

9 lines
197 B
Batchfile

@echo off
echo WARN: This file is DEPRECATED. Please use the powershell script (updateSubmodule.ps1) instead!
git submodule update --init
cd .\Gamelib
git fetch
git checkout gamelib
git pull
cd ..