From e37e48498b32c2f491bec13490cece3da7ba6c5f Mon Sep 17 00:00:00 2001 From: Timo Stollenwerk Date: Sat, 28 Aug 2010 19:18:33 +0000 Subject: [PATCH] Write errors to the stout as well. svn path=/plone.app.discussion/trunk/; revision=39313 --- test-plone-4.0.x.cfg | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/test-plone-4.0.x.cfg b/test-plone-4.0.x.cfg index 4d9214a..658e132 100644 --- a/test-plone-4.0.x.cfg +++ b/test-plone-4.0.x.cfg @@ -118,8 +118,10 @@ input = inline: echo "Checking" echo $TMPL find plone/app/discussion -regex ".*\.[c|z]?pt" | xargs bin/zptlint > zptlint.log - if [ -s zptlint.log ]; then - echo "Errors were found, see zptlint.log for details" + if [ -s zptlint.log ]; then + echo "Errors were found:" + cat zptlint.log + echo "Errors were written to zptlint.log" exit 1; else echo "No errors found"