[Python-checkins] r42371 - python/branches/release24-maint/Misc/build.sh

neal.norwitz python-checkins at python.org
Wed Feb 15 06:02:01 CET 2006


Author: neal.norwitz
Date: Wed Feb 15 06:02:00 2006
New Revision: 42371

Modified:
   python/branches/release24-maint/Misc/build.sh
Log:
Send failures to python-checkins, cc/me.

Modified: python/branches/release24-maint/Misc/build.sh
==============================================================================
--- python/branches/release24-maint/Misc/build.sh	(original)
+++ python/branches/release24-maint/Misc/build.sh	Wed Feb 15 06:02:00 2006
@@ -45,9 +45,8 @@
 ## Configurable options
 
 FAILURE_SUBJECT="Python Regression Test Failures"
-#FAILURE_MAILTO="python-checkins at python.org"
-#FAILURE_MAILTO="YOUR_ACCOUNT at gmail.com"
-FAILURE_MAILTO="nnorwitz at gmail.com"
+FAILURE_MAILTO="python-checkins at python.org"
+FAILURE_CC="nnorwitz at gmail.com"
 
 REMOTE_SYSTEM="neal at dinsdale.python.org"
 REMOTE_DIR="/data/ftp.python.org/pub/docs.python.org/dev/2.4"
@@ -72,7 +71,7 @@
 
 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
 }
 


More information about the Python-checkins mailing list