From fc2c66b2252208ae54f6e4739dc211fc0ca325eb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Matthias=20Kr=C3=BCger?= Date: Tue, 18 Jun 2013 01:07:17 +0200 Subject: [PATCH] xonotic-map-compiler-optionsfile: oops, do not try reading compiletimes for maps we have no data for. --- misc/tools/xonotic-map-compiler-optionsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 -- 2.39.2