Skip to content

Commit

Permalink
Dev: Fix exclamation mark in travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Feb 10, 2021
1 parent 5eb655f commit 2191a1d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ before_script:
- sudo service apache2 restart

# Check for syntax errors.
- ! find application/ -type f -name "*.php" -exec php -l {} \; | grep -v 'No syntax errors'
# NB: '!' doesn't work properly, see https://github.com/travis-ci/travis-ci/issues/7494
- "! find application/ -type f -name '*.php' -exec php -l {} \; | grep -v 'No syntax errors'"

# Test server.
- wget localhost
Expand Down

0 comments on commit 2191a1d

Please sign in to comment.