X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=misc%2Ftools%2Fxonotic-map-compiler-optionsfile;h=6c40e853965bb21279b0bab9dc5e252171945fe3;hb=06ce68022c300cccc41414a18323f6c837eac1ca;hp=4f798c6495b641cf42c075c199f3612064a2dfc9;hpb=d6b69254f7278737e04d446b64e37f4e8cd28f06;p=xonotic%2Fxonotic.git diff --git a/misc/tools/xonotic-map-compiler-optionsfile b/misc/tools/xonotic-map-compiler-optionsfile index 4f798c64..6c40e853 100755 --- a/misc/tools/xonotic-map-compiler-optionsfile +++ b/misc/tools/xonotic-map-compiler-optionsfile @@ -10,15 +10,24 @@ else minimap_override= fi -mkdir -p ~/.xonotic-map-compiler-autobuild/ # to store map compile times - +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 "Done in approximately $((($lasttime+59)/60)) minutes." + if [ -n "$IRCSPAM" ]; then + echo "Done in approximately $((($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` -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 -cd ~/.xonotic-map-compiler-autobuild/ -echo $tdelta > ${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname +exit $status