M=${1%.map}
shift
+m=${M:30}
sz=`grep '^size ' "$M.mapinfo" 2>/dev/null || true`
if [ -n "$sz" ]; then
mkdir -p ~/.xonotic-map-compiler-autobuild/ # to store map compile times in
tstart=`date +%s`
-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
+if [ -f ~/.xonotic-map-compiler-autobuild/${m##*/} ] ; then # ${m##*/} : cut $m at "/", get latest field
+ lasttime=`cat ~/.xonotic-map-compiler-autobuild/${m##*/} 2>/dev/null` # oppress warnings if file doesn't exist
echo "Done in approximately $(($lasttime/60)) minutes."
fi
tend=`date +%s`
let tdelta=$tend-$tstart # compute time
if [[ ! ${mapfail} ]] ; then
- echo $tdelta > ~/.xonotic-map-compiler-autobuild/${M:30} # save time in ~/.xonotic-map-compiler-autobuild/mapname
+ echo $tdelta > ~/.xonotic-map-compiler-autobuild/${m##*/} # save time in ~/.xonotic-map-compiler-autobuild/mapname
fi