From: Thierry Parmentelat Date: Tue, 8 Apr 2008 14:47:20 +0000 (+0000) Subject: publish more from the log tail, as summary tends to grow X-Git-Tag: 4.2-rc2~43 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=3c2d2856ae8a6aa71ffddaeba3454f47964a9f8f;p=build.git publish more from the log tail, as summary tends to grow --- diff --git a/vbuild-nightly.sh b/vbuild-nightly.sh index b71f82ea..b80a2489 100755 --- a/vbuild-nightly.sh +++ b/vbuild-nightly.sh @@ -99,9 +99,9 @@ function failure() { mkdir -p ${WEBPATH} cp $LOG ${WEBLOG} summary $LOG >> ${WEBLOG} - (echo -n "============================== $COMMAND: failure at " ; date ; tail -c 20k $WEBLOG) > ${WEBLOG}.ko + (echo -n "============================== $COMMAND: failure at " ; date ; tail -c 30k $WEBLOG) > ${WEBLOG}.ko if [ -n "$MAILTO" ] ; then - tail -c 20k ${WEBLOG} | mail -s "Failures for build ${BASE}" $MAILTO + tail -c 30k ${WEBLOG} | mail -s "Failures for build ${BASE}" $MAILTO fi exit 1 }