Skip to content

Commit 922b090

Browse files
committed
Made security-checker optional for HHVM run.
1 parent 1f5668b commit 922b090

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ script:
1717
# Try to install all requirements.
1818
- composer install
1919
# Check if there is a security issue with the required packages.
20-
- bin/security-checker security:check composer.lock
20+
# Skipping this check for HHVM, till this is merged: https://github.com/facebook/hhvm/issues/1859
21+
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then bin/security-checker security:check composer.lock; fi;'
2122

2223
notifications:
2324
email:

0 commit comments

Comments
 (0)