Clarify autobuild-bsp time estimate message

This commit is contained in:
bones_was_here 2022-06-27 01:20:07 +10:00
parent 975add8a2e
commit aa9e1ce441

View File

@ -15,9 +15,9 @@ 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."
echo "Predicted build time is $((($lasttime+59)/60)) minutes."
if [ -n "$IRCSPAM" ]; then
echo "Done in approximately $((($lasttime+59)/60)) minutes." | $IRCSPAM >/dev/null 2>&1 || true
echo "Predicted build time is $((($lasttime+59)/60)) minutes." | $IRCSPAM >/dev/null 2>&1 || true
fi
fi