svn commit: r282360 - user/gjb/thermite

Glen Barber gjb at FreeBSD.org
Sun May 3 04:24:30 UTC 2015


Author: gjb
Date: Sun May  3 04:24:29 2015
New Revision: 282360
URL: https://svnweb.freebsd.org/changeset/base/282360

Log:
  Increase line count in email output.
  List files in ${DESTDIR}, output to the log file,
  which helps detect partial failures.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  user/gjb/thermite/thermite.sh

Modified: user/gjb/thermite/thermite.sh
==============================================================================
--- user/gjb/thermite/thermite.sh	Sat May  2 22:48:56 2015	(r282359)
+++ user/gjb/thermite/thermite.sh	Sun May  3 04:24:29 2015	(r282360)
@@ -237,7 +237,7 @@ send_logmail() {
 	local _subject
 	_body="${1}"
 	_subject="${2}"
-	tail -n 10 "${_body}" | \
+	tail -n 50 "${_body}" | \
 		mail -s "${_subject} done" ${emailgoesto}
 	return 0
 }
@@ -265,6 +265,7 @@ build_release() {
 			return 0
 			;;
 	esac
+	ls -1 ${CHROOTDIR}/R/* >> ${logdir}/${_build}.log
 	send_logmail ${logdir}/${_build}.log ${_build}
 	unset _build _conf
 }


More information about the svn-src-user mailing list