From: Matthias Krüger Date: Mon, 17 Jun 2013 22:54:13 +0000 (+0200) Subject: xonotic-map-compiler-optionsfile: print in how many minutes the compile should finish... X-Git-Tag: xonotic-v0.8.0~111 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ca3578bf57a17d2d9343e52649cc8b636794d84d;p=xonotic%2Fxonotic.git xonotic-map-compiler-optionsfile: print in how many minutes the compile should finish approximately. --- diff --git a/misc/tools/xonotic-map-compiler-optionsfile b/misc/tools/xonotic-map-compiler-optionsfile index 4f798c64..640e34a9 100755 --- a/misc/tools/xonotic-map-compiler-optionsfile +++ b/misc/tools/xonotic-map-compiler-optionsfile @@ -10,15 +10,15 @@ 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:30} 2>/dev/null` # oppress warnings if file doesn't exist +echo "Done in approximately $(($lasttime/60)) minutes." misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@" tend=`date +%s` let tdelta=$tend-$tstart # compute time -cd ~/.xonotic-map-compiler-autobuild/ -echo $tdelta > ${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname +echo $tdelta > ~/.xonotic-map-compiler-autobuild/${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname