From: Rudolf Polzer Date: Thu, 16 Sep 2010 08:48:26 +0000 (+0200) Subject: fix a path error when release building X-Git-Tag: xonotic-v0.1.0preview~210 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=cda347b55aac9570ef913562a6b14f4ad6152e58;ds=sidebyside fix a path error when release building --- diff --git a/all b/all index 41040a12..b5b4ed1a 100755 --- a/all +++ b/all @@ -278,8 +278,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 -x@"$ziplist" "$archive" "$@" || true + zip -9y -@<"$ziplist" "$archive" || true rm -f "$ziplist" }