Revision: 10321 http://pure-data.svn.sourceforge.net/pure-data/?rev=10321&view=rev Author: zmoelnig Date: 2008-10-02 17:59:51 +0000 (Thu, 02 Oct 2008)
Log Message: ----------- make the error-grep case-insensitive (to allow "ERROR:")
Modified Paths: -------------- trunk/scripts/auto-build/mail-mingw-log-hack.sh trunk/scripts/auto-build/run-automated-builder
Modified: trunk/scripts/auto-build/mail-mingw-log-hack.sh =================================================================== --- trunk/scripts/auto-build/mail-mingw-log-hack.sh 2008-10-01 07:09:07 UTC (rev 10320) +++ trunk/scripts/auto-build/mail-mingw-log-hack.sh 2008-10-02 17:59:51 UTC (rev 10321) @@ -10,7 +10,7 @@
mailbody_on_failure () { ## this is a somewhat simplistic expression to detect error-lines - cat "$1" | grep " error: " | tail -20 + cat "$1" | grep -i "error: " | tail -20 echo "" echo "the full logfile can be viewed at" echo "http://autobuild.puredata.info/auto-build/$%7BDATE%7D/logs/$%7BLOGFILE##*/%7..."
Modified: trunk/scripts/auto-build/run-automated-builder =================================================================== --- trunk/scripts/auto-build/run-automated-builder 2008-10-01 07:09:07 UTC (rev 10320) +++ trunk/scripts/auto-build/run-automated-builder 2008-10-02 17:59:51 UTC (rev 10321) @@ -16,7 +16,7 @@
mailbody_on_failure () { ## this is a somewhat simplistic expression to detect error-lines - cat ${LOGFILE} | grep " error: " | tail -20 + cat ${LOGFILE} | grep -i "error: " | tail -20 # tail -20 ${LOGFILE} echo "" echo "the full logfile can be viewed at"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.