X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=find-bad-php.sh;h=2fdfecf45b9391673b127911bf8eae0335154842;hb=57da8264e84a9a548caa42e069ddf4be8ee2d63d;hp=1d530b3afdb199af2c8c3022ed18cbcf1f723ae5;hpb=0553b20da2815d73580a07212106ee3be7aa3407;p=hub.git diff --git a/find-bad-php.sh b/find-bad-php.sh index 1d530b3af..2fdfecf45 100755 --- a/find-bad-php.sh +++ b/find-bad-php.sh @@ -18,6 +18,13 @@ do then echo "$0: Script '${SCRIPT}' has non-typical footer." fi + + LINT=`php -l "${SCRIPT}" 2>&1 | grep -v "No syntax errors detected in"` + + if [ -n "${LINT}" ] + then + echo "$0: ${LINT}" + fi done echo "$0: All done."