From ab525161137d8f826a327d043b86caf69714039c Mon Sep 17 00:00:00 2001 From: Daniil Gentili Date: Wed, 19 Jun 2019 11:27:42 +0200 Subject: [PATCH] Just check without removing output --- tests/makephar.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/makephar.sh b/tests/makephar.sh index ed6816bf..e3e8cffa 100755 --- a/tests/makephar.sh +++ b/tests/makephar.sh @@ -89,7 +89,7 @@ cd .. find phar5 -type f -exec sed 's/\w* \.\.\./.../' -i {} + # Make sure conversion worked -for f in $(find . -type f -name '*.php'); do php -l $f | grep -v 'No syntax errors';done +for f in $(find . -type f -name '*.php'); do php -l $f;done #[ "$TRAVIS_BRANCH" != "master" ] && branch="-$TRAVIS_BRANCH" || branch="" branch="-$TRAVIS_BRANCH"