Skip to content

Commit

Permalink
Don't syntax check l10n validator config on PHP5.2
Browse files Browse the repository at this point in the history
See #23
  • Loading branch information
JDGrimes committed Feb 18, 2015
1 parent e71c188 commit ca7c113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ script:
- xmllint --noout $(find . -type f \( -name '*.xml' -o -name '*.xml.dist' \))
- find . -name '*.sh' -exec bash -n {} \;
- find ./travis -name '*.yml' ! -name '.coveralls.yml' -exec travis-lint {} \;
- phpenv global 5.2 && find . ! -path './phpcs/*' -name '*.php' -exec php -lf {} \;
- phpenv global 5.2 && find . ! -path './phpcs/*' ! -path './l10n-validator/*' -name '*.php' -exec php -lf {} \;
- phpenv global 5.3 && find . -name '*.php' -exec php -lf {} \;
- phpenv global 5.4 && find . -name '*.php' -exec php -lf {} \;
- phpenv global 5.5 && find . -name '*.php' -exec php -lf {} \;
Expand Down

0 comments on commit ca7c113

Please sign in to comment.