From: S.Çağlar Onur Date: Wed, 13 Apr 2011 14:57:06 +0000 (-0400) Subject: make mailman happy (aka fix held message for implicit address) X-Git-Tag: 5.0-rc23~80 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=8800ac8db9d32e6aaf7ab34b4f3fa8e94010132b;p=build.git make mailman happy (aka fix held message for implicit address) --- diff --git a/vbuild-nightly.sh b/vbuild-nightly.sh index 5ee38d9a..9d117523 100755 --- a/vbuild-nightly.sh +++ b/vbuild-nightly.sh @@ -136,6 +136,7 @@ function failure() { if [ -n "$MAILTO" ] ; then ( \ echo "Subject: Failures with $MAIL_SUBJECT $BASE on $(hostname)" ; \ + echo "To: $MAILTO" ; \ echo "See full build log at $WEBBASE_URL/log.txt" ; \ echo "and tail version at $WEBBASE_URL.ko" ; \ echo "See complete set of testlogs at $WEBBASE_URL/testlogs" ; \ @@ -174,6 +175,7 @@ function success () { if [ -n "$MAILTO" ] ; then ( \ echo "Subject: Success with ${MAIL_SUBJECT} ${BASE} on $(hostname)" ; \ + echo "To: $MAILTO" ; \ echo "$PLDISTRO ($BASE) build for $FCDISTRO completed on $(date)" ; \ echo "See full build log at $WEBBASE_URL/log.txt" ; \ [ -n "$DO_TEST" ] && echo "See complete set of testlogs at $WEBBASE_URL/testlogs" ) \