Merge pull request #105 from Bilge/patch-2

Added `set -e` comment.
This commit is contained in:
Sara Itani 2017-02-14 02:46:45 -05:00 коммит произвёл GitHub
Родитель 9633608d8f 1d89137c15
Коммит aa2ed9d0cb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -20,7 +20,7 @@ cache:
- validation/frameworks
before_script:
- set -e
- set -e # Stop on first error.
- phpenv config-rm xdebug.ini
- if find . -name "*.php" -path "./src/*" -path "./experiments/*" -path "./tools/*" -path "./syntax-visualizer/server/src/*" -exec php -l {} 2>&1 \; | grep "syntax error, unexpected"; then exit 1; fi
- if find . -name "*.php" -path "./tests/*" -path "./validation/*" -maxdepth 0 --exec php -l {} 2>&1 \; | grep "syntax error, unexpected"; then exit 1; fi