]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
xonotic-map-compiler-optionsfile: oops, do not try reading compiletimes for maps...
authorMatthias Krüger <matthias.krueger@famsik.de>
Mon, 17 Jun 2013 23:07:17 +0000 (01:07 +0200)
committerMatthias Krüger <matthias.krueger@famsik.de>
Mon, 17 Jun 2013 23:07:17 +0000 (01:07 +0200)
misc/tools/xonotic-map-compiler-optionsfile

index 7f14cef9e26ad8bdfe412c8a833dfd27c21f6fad..efd315b1dcb7098bc4e29696e4866400bb6643de 100755 (executable)
@@ -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