]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
when calling 7za, turn off solid archiving to help rsync update the pk3 files
authorRudolf Polzer <divVerent@xonotic.org>
Fri, 6 May 2011 06:25:10 +0000 (08:25 +0200)
committerRudolf Polzer <divVerent@xonotic.org>
Fri, 6 May 2011 06:25:10 +0000 (08:25 +0200)
all

diff --git a/all b/all
index 8ee6f3dccfe59e403bfab9fd06e67b11da05fc64..5d7d198bab9d37bf6d0cb20ac2bc065bc9bf4cc3 100755 (executable)
--- a/all
+++ b/all
@@ -361,8 +361,8 @@ mkzip()
        shift
        ziplist=`mktemp`
        find "$@" -xtype f \( -executable -or -type l \) -print > "$ziplist"
-       7za a -tzip -mx=9 -x@"$ziplist" "$archive" "$@" || true
-       zip         -9y   -@<"$ziplist" "$archive"      || true
+       7za a -tzip -mx=9 -ms=off -x@"$ziplist" "$archive" "$@" || true
+       zip         -9y           -@<"$ziplist" "$archive"      || true
        rm -f "$ziplist"
 }