Files
commandergenius/project/jni/application/supertux/AndroidPreBuild.sh
Sergii Pylypenko 5f34d59ba2 Updated SuperTux
2013-06-26 17:53:11 +03:00

9 lines
290 B
Bash
Executable File

#!/bin/sh
if [ -e supertux/patched.successfully ]; then
exit 0
else
# Google Code fails to send shallow repository, so we're checking out everything
git clone https://code.google.com/p/supertux && patch -p1 -d supertux < android.diff && touch supertux/patched.successfully || exit 1
fi