]> git.xonotic.org Git - xonotic/xonotic.git/blobdiff - misc/tools/xonotic-map-compiler-optionsfile
Fix sdl-config call.
[xonotic/xonotic.git] / misc / tools / xonotic-map-compiler-optionsfile
index 640e34a936457457957096fc26d8a2bdd15d5c43..6ede9d5d2f5269fdf0431d9ed87593a8802a6b62 100755 (executable)
@@ -13,12 +13,21 @@ fi
 mkdir -p ~/.xonotic-map-compiler-autobuild/ # to store map compile times in
 tstart=`date +%s`
 
-lasttime=`cat ~/.xonotic-map-compiler-autobuild/${M:30} 2>/dev/null` # oppress warnings if file doesn't exist
-echo "Done in approximately $(($lasttime/60)) minutes."
+lasttime=`cat ~/.xonotic-map-compiler-autobuild/"${M##*/}".buildtime 2>/dev/null || true`
+if [ -n "$lasttime" ] ; then
+       echo "Done in approximately $((($lasttime+59)/60)) minutes."
+       if [ -n "$IRCSPAM" ]; then
+               echo "Done in approximately $((($lasttime+59)/60)) minutes." | $IRCSPAM || true
+       fi
+fi
 
 misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@"
+status=$?
 
 tend=`date +%s`
-let tdelta=$tend-$tstart # compute time
+tdelta=$(($tend - $tstart)) # compute time
+if [ $status -eq 0 ] ; then
+       echo "$tdelta" > ~/.xonotic-map-compiler-autobuild/"${M##*/}".buildtime # save time in ~/.xonotic-map-compiler-autobuild/mapname
+fi
 
-echo $tdelta > ~/.xonotic-map-compiler-autobuild/${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname
+exit $status