aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/run-automated-builder
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-10-02 17:59:51 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2008-10-02 17:59:51 +0000
commited9a6374c1b6b7a456855ad18ac70f4dadf46839 (patch)
treeac780ab185ef761259e3b8a54d611a3899d90a44 /scripts/auto-build/run-automated-builder
parent5c29d9a8ff3db169a7b65ac6ccb619a984697533 (diff)
make the error-grep case-insensitive (to allow "ERROR:")
svn path=/trunk/; revision=10321
Diffstat (limited to 'scripts/auto-build/run-automated-builder')
-rwxr-xr-xscripts/auto-build/run-automated-builder2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/auto-build/run-automated-builder b/scripts/auto-build/run-automated-builder
index 1c4b5f3b..d0bb3373 100755
--- a/scripts/auto-build/run-automated-builder
+++ b/scripts/auto-build/run-automated-builder
@@ -16,7 +16,7 @@ SCRIPT=$(echo $0| sed 's|.*/\(.*\)|\1|g')
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"