From 5323dad16e80a43687667e0a1b50aa47ca840c2a Mon Sep 17 00:00:00 2001 From: weissms Date: Sun, 4 Mar 2012 13:38:21 +0000 Subject: [PATCH] Darwin's BSD based tail command can not handle '-' for stdin, gnu's tail seems to work well without it. This should fix the missing build log attachments from the Darwin build machine. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@44335 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- scripts/nightly/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/nightly/build b/scripts/nightly/build index f77a50bf45..5e1222e0dc 100755 --- a/scripts/nightly/build +++ b/scripts/nightly/build @@ -99,7 +99,7 @@ if [ "$CFG_MAIL_ENABLE" = "yes" ]; then mail_write "The following packages FAILED to build completely:" for package in $failed; do mail_write $package - bzcat $LOG_BASE/$package.log.bz2 | tail -100 - >/tmp/_aros_build_log_$package + bzcat $LOG_BASE/$package.log.bz2 | tail -100 >/tmp/_aros_build_log_$package ATTACH=( $ATTACH -a/tmp/_aros_build_log_$package ) done mail_write "" -- 2.11.4.GIT