git repos / blockattack-game

commit e024f646

Poul Sander · 2026-08-04 08:01
e024f64659ac2ada2f4d26c21ca0c7be7a7a3148 patch · browse files
parent 16f25a8515afaa9c6b3ee497f813ba4fc4e1a5d4

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