mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-03-31 23:57:41 +00:00
check if map has been already built via HTTP too
This commit is contained in:
parent
036e5f4205
commit
c52c5f2942
@ -116,10 +116,9 @@ buildthemap()
|
||||
REFNAME=$1
|
||||
HASH=$2
|
||||
url=$3
|
||||
bspdir=$4
|
||||
M=$5
|
||||
M=$4
|
||||
blobhash=$6
|
||||
if [ -f "$bspdir/$M-$blobhash.pk3" ]; then
|
||||
if HEAD "$url$M-$blobhash.pk3"; then
|
||||
continue
|
||||
fi
|
||||
if [ -n "$IRCSPAM" ]; then
|
||||
@ -140,7 +139,6 @@ buildthemap()
|
||||
ln -snf "../$M-$blobhash.pk3" "$M.pk3" # from ALL branches, so beware!
|
||||
rsync -vaSHP "$M-$blobhash.pk3" "$url_ssh"
|
||||
rsync -vaSHP "$M.pk3" "$url_ssh""latest/"
|
||||
rm -f *.pk3
|
||||
if [ -n "$IRCSPAM" ]; then
|
||||
$IRCSPAM < "maps/$M.irc"
|
||||
fi
|
||||
@ -180,7 +178,7 @@ case "$1" in
|
||||
git reset --hard
|
||||
git clean -xfd
|
||||
git checkout -f "$HASH"
|
||||
allmaps buildthemap "$REFNAME" "$HASH" "$url" "$bspoutdir"
|
||||
allmaps buildthemap "$REFNAME" "$HASH" "$url"
|
||||
touch "$cachedir/$HASH"
|
||||
done
|
||||
git checkout -f master
|
||||
|
Loading…
Reference in New Issue
Block a user