diff options
-rwxr-xr-x | scripts/auto-build/run-automated-builder | 2 |
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 "" |