aboutsummaryrefslogtreecommitdiff
path: root/scripts/auto-build/run-automated-builder
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-08-14 16:02:07 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2009-08-14 16:02:07 +0000
commit7873b57b372e662ced29a6446883fd1c7bb347d9 (patch)
tree7fba7a86ad9c1b0a9e80db75bf214b17ee4a49e0 /scripts/auto-build/run-automated-builder
parent61d6464d386bd3074723c23ae4bb24b64023bd00 (diff)
added the linker error as one of the things to include in the email
svn path=/trunk/; revision=11915
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 e53122b2..1e67b3f1 100755
--- a/scripts/auto-build/run-automated-builder
+++ b/scripts/auto-build/run-automated-builder
@@ -24,7 +24,7 @@ SCRIPT=$(echo $0| sed 's|.*/\(.*\)|\1|g')
mailbody_on_failure () {
## this is a somewhat simplistic expression to detect error-lines
echo "last 20 errors ----------------------------------------"
- cat ${LOGFILE} | grep -i "error: " | tail -20
+ cat ${LOGFILE} | grep -i -e "error: " -e "cannot find" | tail -20
echo "last 5 lines ----------------------------------------"
tail -5 ${LOGFILE}
echo ""