diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/auto-build/mail-mingw-log-hack.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/scripts/auto-build/mail-mingw-log-hack.sh b/scripts/auto-build/mail-mingw-log-hack.sh new file mode 100755 index 00000000..32d63f16 --- /dev/null +++ b/scripts/auto-build/mail-mingw-log-hack.sh @@ -0,0 +1,18 @@ +#!/bin/sh + + +# the source dir where this script is +SCRIPT_DIR=`echo $0 | sed 's|\(.*\)/.*$|\1|'` +. $SCRIPT_DIR/auto-build-common + +# the name of this script +SCRIPT=`echo $0| sed 's|.*/\(.*\)|\1|g'` + +for logfile in `ls -1 /home/pd/logs/${DATE}_*_mingw*.txt`; do + completion_test=`tail -1 ${logfile}` + if [ "x${completion_test}" != "xSUCCESS" ]; then + SUBJECT="autobuild: $distro $HOSTNAME $DATE $TIME" +# tail -20 ${logfile} | mail -s "autobuild: $logfile" ${RECIPIENT} + tail -20 ${logfile} | mail -s "autobuild: $logfile" hans@eds.org + fi +done |