Commit daa1dfd6 authored by Imran Hussain's avatar Imran Hussain
Browse files

Fix how php files are passed to php -l

parent e2aa881a
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -6,6 +6,6 @@ before_script:
syntax:
  script:
  - php -l htdocs/index.php
  - php -l components/*.php
  - php -l plugins/*.php
  - php -l lib/*.php
 No newline at end of file
  - find components | xargs -n 1 php -l
  - find plugins | xargs -n 1 php -l
  - find lib | xargs -n 1 php -l
 No newline at end of file