From: Matthias Krüger Date: Mon, 17 Jun 2013 23:03:50 +0000 (+0200) Subject: xonotic-map-compiler-optionsfile: don't overwrite compile time if the mapbuild failed. X-Git-Tag: xonotic-v0.8.0~110 X-Git-Url: http://git.xonotic.org/?a=commitdiff_plain;h=fd144c75e4f059765667f39f06def82e97dbb1f6;p=xonotic%2Fxonotic.git xonotic-map-compiler-optionsfile: don't overwrite compile time if the mapbuild failed. --- diff --git a/misc/tools/xonotic-map-compiler-optionsfile b/misc/tools/xonotic-map-compiler-optionsfile index 640e34a9..7f14cef9 100755 --- a/misc/tools/xonotic-map-compiler-optionsfile +++ b/misc/tools/xonotic-map-compiler-optionsfile @@ -16,9 +16,10 @@ 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 "$@" +misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@" || mapfail=true tend=`date +%s` let tdelta=$tend-$tstart # compute time - -echo $tdelta > ~/.xonotic-map-compiler-autobuild/${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname +if [[ ! ${mapfail} ]] ; then + echo $tdelta > ~/.xonotic-map-compiler-autobuild/${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname +fi