]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
./all compile-map: generate logfile and pack into the .pk3
authorMatthias Krüger <matthias.krueger@famsik.de>
Wed, 10 Jul 2013 19:57:59 +0000 (21:57 +0200)
committerMatthias Krüger <matthias.krueger@famsik.de>
Wed, 10 Jul 2013 19:57:59 +0000 (21:57 +0200)
misc/tools/all/xonotic.subr

index ba29aa5dc3d29c234807cde036f794932f463b76..805a910397145f91836338abb06b012b9947b282 100644 (file)
@@ -18,12 +18,12 @@ case "$cmd" in
                        if [ ! -f "$mapfile" ] ; then
                                msg "ERROR, $mapfile not found!"
                        else
-                               time misc/tools/xonotic-map-compiler-optionsfile "$mapfile" // map is compiled now
+                               time misc/tools/xonotic-map-compiler-optionsfile "$mapfile" |& tee data/xonotic-maps.pk3dir/$mapname.log
                                cd data/xonotic-maps.pk3dir
                                mapblobhash=`git rev-parse --revs-only "HEAD:maps/$mapname.map.options" || true`-`git rev-parse --revs-only "HEAD:maps/$mapname.map" || true`
                                mapnamezip=${mapname##*/}
                                echo "Compressing to .pk3..."
-                               zip -9r "$mapnamezip-$mapblobhash.pk3"  "maps/$mapname.bsp" "maps/$mapname/"  "gfx/${mapnamezip}_mini.tga"
+                               zip -9r "$mapnamezip-$mapblobhash.pk3"  "maps/$mapname.bsp" "maps/$mapname/"  "gfx/${mapnamezip}_mini.tga" "$mapname.log"
                                mv -f "$mapnamezip-$mapblobhash.pk3" ../
                                verbose "$SELF" update-maps
                        fi