From: Rudolf Polzer Date: Fri, 6 May 2011 06:25:10 +0000 (+0200) Subject: when calling 7za, turn off solid archiving to help rsync update the pk3 files X-Git-Tag: xonotic-v0.5.0~100 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=3969459349755889e8e514aa31470c774068d278;p=xonotic%2Fxonotic.git when calling 7za, turn off solid archiving to help rsync update the pk3 files --- diff --git a/all b/all index 8ee6f3dc..5d7d198b 100755 --- 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" }