From: Matthias Krüger Date: Mon, 17 Jun 2013 23:07:17 +0000 (+0200) Subject: xonotic-map-compiler-optionsfile: oops, do not try reading compiletimes for maps... X-Git-Tag: xonotic-v0.8.0~109 X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=fc2c66b2252208ae54f6e4739dc211fc0ca325eb;hp=fd144c75e4f059765667f39f06def82e97dbb1f6 xonotic-map-compiler-optionsfile: oops, do not try reading compiletimes for maps we have no data for. --- diff --git a/misc/tools/xonotic-map-compiler-optionsfile b/misc/tools/xonotic-map-compiler-optionsfile index 7f14cef9..efd315b1 100755 --- a/misc/tools/xonotic-map-compiler-optionsfile +++ b/misc/tools/xonotic-map-compiler-optionsfile @@ -13,8 +13,10 @@ 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." +if [ -f "~/.xonotic-map-compiler-autobuild/${M:30}" ] ; then + 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." +fi misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@" || mapfail=true