git_update.sh:remove 2 repos from being pulled [skip ci]

Only the 2 remaining repos are needed to try the game if you're not
using a fork

https://github.com/ZetaGlest/zetaglest-source#try-the-game-without-contributing
This commit is contained in:
andy5995
2018-01-17 21:38:23 -06:00
parent 61738cc167
commit 49882f998a

View File

@@ -1,21 +1,13 @@
#!/bin/bash
export LANG=C
cd "$(dirname $(readlink -f $0))"
cd "$(dirname $(readlink -f $0))" &&
echo $PWD &&
git pull &&
cd data &&
git pull &&
cd .. &&
cd source/masterserver &&
git pull &&
cd ../.. &&
cd mk/linux/tools-for-standalone-client/installer/mojosetup
git pull &&
exit 0