]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
now the script can "download" the maps, and also "download-latest" from the "latest...
authorRudolf Polzer <divVerent@alientrap.org>
Thu, 27 May 2010 13:29:43 +0000 (15:29 +0200)
committerRudolf Polzer <divVerent@alientrap.org>
Thu, 27 May 2010 13:29:43 +0000 (15:29 +0200)
misc/tools/xonotic-map-compiler-autobuild

index a22dceb4a98e3fb78401395253b6e8493752631a..00359af61b5a6bd66ff815ab30b120d3a6bc8cc6 100755 (executable)
@@ -42,10 +42,11 @@ buildthemap()
 getthemap()
 {
        url=$1
 getthemap()
 {
        url=$1
-       bspdir=$2
-       M=$3
-       blobhash=$4
-       if [ -f "$bspdir/$M-$blobhash.pk3" ]; then
+       bspdir_old=$2
+       bspdir=$3
+       M=$4
+       blobhash=$5
+       if mv "$bspdir_old/$M-$blobhash.pk3" "$bspdir/$M-blobhash.pk3"; then
                continue
        fi
        if ! wget -O "$bspdir/$M-$blobhash.pk3" "$url$M-$blobhash.pk3"; then
                continue
        fi
        if ! wget -O "$bspdir/$M-$blobhash.pk3" "$url$M-$blobhash.pk3"; then
@@ -74,8 +75,18 @@ case "$1" in
                git checkout master
                ;;
        download)
                git checkout master
                ;;
        download)
+               rm -rf "$bspdir.old"
+               mv "$bspdir" "$bspdir.old" || true
                mkdir -p "$bspdir"
                cd data/xonotic-maps.pk3dir
                mkdir -p "$bspdir"
                cd data/xonotic-maps.pk3dir
-               allmaps getthemap "$url" "$bspdir"
+               allmaps getthemap "$url" "$bspdir.old" "$bspdir"
+               echo "List of maps that got deleted (if any) and currently are in $bspdir.old:"
+               ls -l "$bspdir.old"
+               ;;
+       download-latest)
+               mkdir -p "$bspdir"
+               cd "$bspdir"
+               rm -f *-????????????????????????????????????????-????????????????????????????????????????.pk3
+               wget -r -l1 -A "*.pk3" -N --no-parent --no-directories "$url/latest"
                ;;
 esac
                ;;
 esac