mirror of
https://github.com/glest/glest-source.git
synced 2025-02-23 11:15:02 +01:00
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
14 lines
123 B
Bash
Executable File
14 lines
123 B
Bash
Executable File
#!/bin/bash
|
|
export LANG=C
|
|
|
|
cd "$(dirname $(readlink -f $0))" &&
|
|
|
|
echo $PWD &&
|
|
|
|
git pull &&
|
|
|
|
cd data &&
|
|
git pull &&
|
|
|
|
exit 0
|