Browse Source

added UTF8 BOM check to travis.yml

issue #13296
tags/2.0.11
Carsten Brandt 8 years ago
parent
commit
17c272501a
No known key found for this signature in database
GPG Key ID: BE4F41DE1DEEEED0
  1. 2
      .travis.yml

2
.travis.yml

@ -139,6 +139,8 @@ before_script:
script:
# ensure no files contain UTF-8 byte order mark
- if ! grep -rlI $'\xEF\xBB\xBF' framework/ ; then echo "no utf8 BOM found"; else echo "found utf8 BOM in some files. See above."; exit 1; fi
# validate composer.json
- composer validate --no-check-lock
- cd framework && composer validate --no-check-lock && cd ..

Loading…
Cancel
Save