Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 May 2015 04:24:30 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r282360 - user/gjb/thermite
Message-ID:  <201505030424.t434OUtp014059@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201505030424.t434OUtp014059>