commit e024f646
Also reset the permissions of the AUTH file and execute it once
Changed files
| M | Game/data/textures/alt_gfx/background.png before |
| M | packdata.sh before |
diff --git a/Game/data/textures/alt_gfx/background.png b/Game/data/textures/alt_gfx/background.png
old mode 100755
new mode 100644
Binary files a/Game/data/textures/alt_gfx/background.png and b/Game/data/textures/alt_gfx/background.png differ
diff --git a/packdata.sh b/packdata.sh
index ed3b49e..19faa78 100755
--- a/packdata.sh
+++ b/packdata.sh
@@ -2,11 +2,12 @@
set -e
export LC_ALL=C
export TZ=UTC
-zip -9ojX Game/blockattack.data source/AUTH
if [ "$BLOCKATTACK_RESET_PERMISSIONS" = "1" ]; then
find Game/data -type f -exec chmod 644 {} +
find Game/data -type d -exec chmod 755 {} +
+ chmod 644 source/AUTH
fi
+zip -9ojX Game/blockattack.data source/AUTH
pushd Game/data
zip -9oX $(find ../blockattack.data ./* | sort) -x \*svn*
popd