From: Neal Norwitz Date: Wed, 15 Feb 2006 05:02:00 +0000 (+0000) Subject: Send failures to python-checkins, cc/me. X-Git-Tag: v2.4.3c1~82 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d577b6dbe35d2fa77798fa7728cb4e90d251ede8;p=thirdparty%2FPython%2Fcpython.git Send failures to python-checkins, cc/me. --- diff --git a/Misc/build.sh b/Misc/build.sh index 81b56f1d612e..26cc9845d102 100755 --- a/Misc/build.sh +++ b/Misc/build.sh @@ -45,9 +45,8 @@ DIR=`dirname $DIR` ## Configurable options FAILURE_SUBJECT="Python Regression Test Failures" -#FAILURE_MAILTO="python-checkins@python.org" -#FAILURE_MAILTO="YOUR_ACCOUNT@gmail.com" -FAILURE_MAILTO="nnorwitz@gmail.com" +FAILURE_MAILTO="python-checkins@python.org" +FAILURE_CC="nnorwitz@gmail.com" REMOTE_SYSTEM="neal@dinsdale.python.org" REMOTE_DIR="/data/ftp.python.org/pub/docs.python.org/dev/2.4" @@ -72,7 +71,7 @@ update_status() { mail_on_failure() { if [ "$NUM_FAILURES" != "0" ]; then - mutt -s "$FAILURE_SUBJECT $1 ($NUM_FAILURES)" $FAILURE_MAILTO < $2 + mutt -s "$FAILURE_SUBJECT $1 ($NUM_FAILURES)" $FAILURE_MAILTO -c $FAILURE_CC < $2 fi }