]> git.xonotic.org Git - xonotic/xonotic.git/blobdiff - misc/tools/xonotic-map-compiler-optionsfile
autobuild-bsp: make the chat spam fancy
[xonotic/xonotic.git] / misc / tools / xonotic-map-compiler-optionsfile
index 7693201b52b2c4c58e8dc8516624f20949974c9c..d1dd14031ac13ab51cf7e823b9bdbe95d03e8c12 100755 (executable)
@@ -10,24 +10,7 @@ else
        minimap_override=
 fi
 
-mkdir -p ~/.xonotic-map-compiler-autobuild/ # to store map compile times in
-tstart=`date +%s`
-
-lasttime=`cat ~/.xonotic-map-compiler-autobuild/"${M##*/}".buildtime 2>/dev/null || true`
-if [ -n "$lasttime" ] ; then
-       echo "Predicted build time is $((($lasttime+59)/60)) minutes."
-       if [ -n "$IRCSPAM" ]; then
-               echo "Predicted build time is $((($lasttime+59)/60)) minutes." | $IRCSPAM >/dev/null 2>&1 || true
-       fi
-fi
-
 misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@"
 status=$?
 
-tend=`date +%s`
-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
-
 exit $status