summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/check-syntax.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/check-syntax.sh b/bin/check-syntax.sh
index 0af1a43..0be70ba 100755
--- a/bin/check-syntax.sh
+++ b/bin/check-syntax.sh
@@ -4,7 +4,7 @@ PHP='/usr/bin/env php'
RETURN=0
# check PHP files
-for FILE in `find attributemap bin lib modules www -name "*.php"`; do
+for FILE in `find attributemap bin config-templates lib metadata-templates modules templates www -name "*.php"`; do
$PHP -l $FILE > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "Syntax check failed for ${FILE}"