[PD-cvs] SF.net SVN: pure-data:[10321] trunk/scripts/auto-build

zmoelnig at users.sourceforge.net zmoelnig at users.sourceforge.net
Thu Oct 2 19:59:52 CEST 2008


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/${DATE}/logs/${LOGFILE##*/}"

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.




More information about the Pd-cvs mailing list