mirror of
https://gitlab.com/xonotic/xonotic
synced 2025-03-11 05:47:40 +00:00
Merge branch 'master' of git://de.git.xonotic.org/xonotic/xonotic
This commit is contained in:
commit
100c8c4a33
@ -9,4 +9,25 @@ if [ -n "$sz" ]; then
|
||||
else
|
||||
minimap_override=
|
||||
fi
|
||||
|
||||
mkdir -p ~/.xonotic-map-compiler-autobuild/ # to store map compile times in
|
||||
tstart=`date +%s`
|
||||
|
||||
lasttime=`cat ~/.xonotic-map-compiler-autobuild/"${M##*/}".buildtime 2>/dev/null || true`
|
||||
if [ -n "$lasttime" ] ; then
|
||||
echo "Done in approximately $((($lasttime+59)/60)) minutes."
|
||||
if [ -n "$IRCSPAM" ]; then
|
||||
echo "Done in approximately $((($lasttime+59)/60)) minutes." | $IRCSPAM || true
|
||||
fi
|
||||
fi
|
||||
|
||||
misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override "$@"
|
||||
status=$?
|
||||
|
||||
tend=`date +%s`
|
||||
tdelta=$(($tend - $tstart)) # compute time
|
||||
if [ $status -eq 0 ] ; then
|
||||
echo "$tdelta" > ~/.xonotic-map-compiler-autobuild/"${M##*/}".buildtime # save time in ~/.xonotic-map-compiler-autobuild/mapname
|
||||
fi
|
||||
|
||||
exit $status
|
||||
|
Loading…
Reference in New Issue
Block a user