mirror of
https://gitlab.com/xonotic/xonotic
synced 2024-12-14 19:05:09 +00:00
fix a path error when release building
This commit is contained in:
parent
ad9d4b2c72
commit
cda347b55a
4
all
4
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"
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user