Subversion Repositories ALCASAR

Compare Revisions

No changes between revisions

Ignore whitespace Rev 2774 → Rev 2775

/web/acc/phpsysinfo/tools/check.sh
0,0 → 1,15
#!/bin/bash
FILES=`find ../ \( \( -iwholename '*tool*' -o -iwholename '*lang*' \) -prune -o -iname '*.php' \) -a -type f`
 
for entry in ${FILES}; do
php -l ${entry}
if [ $? -ne 0 ]
then
exit;
fi
done
 
for entry in ${FILES}; do
echo "running phpcs --standard=PEAR on ${entry}"
phpcs --standard=PEAR ${entry}
done
Property changes:
Added: svn:eol-style
+native
\ No newline at end of property
Added: svn:executable
+*
\ No newline at end of property