]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
./all compile-map: if no arguments are given, print usage info, otherwise take each...
authorMatthias Krüger <matthias.krueger@famsik.de>
Sat, 15 Jun 2013 08:20:01 +0000 (10:20 +0200)
committerMatthias Krüger <matthias.krueger@famsik.de>
Sat, 15 Jun 2013 08:20:01 +0000 (10:20 +0200)
misc/tools/all/xonotic.subr

index 6995ad1b6c96d053aac6f706597dc1bd23fc628a..93c198406ce751afc1cb8cf0d982b20990ad8571 100644 (file)
@@ -4,19 +4,24 @@ case "$cmd" in
                misc/tools/xonotic-map-compiler-autobuild download
                ;;
        compile-map)
-               mapfile="data/xonotic-maps.pk3dir/maps/$1.map"
+               if [ -n "$1" ] ; then
+                       msg "Usage: ./all compile-map mapname1 mapname2 mapname3"
+                       msg "For example: ./all compile-map dance xoylent"
+               fi
                if [ ! -f "netradiant/install/q3map2.x86" ] ; then
                        msg "q3map2 needed! Building netradiant..."
                        cd netradiant
                        make
                        cd ../
                fi
-               if [ ! -f "$mapfile" ] ; then
-                       msg "ERROR, $mapfile not found!"
-                       exit 2
-               else
-                       time misc/tools/xonotic-map-compiler_from_all $mapfile
-               fi
+               for mapfile in $@ ; do
+                               mapfile="data/xonotic-maps.pk3dir/maps/$1.map"
+                       if [ ! -f "$mapfile" ] ; then
+                               msg "ERROR, $mapfile not found!"
+                       else
+                               time misc/tools/xonotic-map-compiler_from_all $mapfile
+                       fi
+               done
                ;;
        compile)
                cleand0=false