Skip to content
Snippets Groups Projects
Commit 83b8b7a5 authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Fix syntax of the if statement.

parent 53872af0
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,7 @@ matrix: ...@@ -10,7 +10,7 @@ matrix:
allow_failures: allow_failures:
- php: hhvm - php: hhvm
before_script: before_script:
- if [[ "$TRAVIS_PHP_VERSION" == "5.3" -o "$TRAVIS_PHP_VERSION" == "5.4" ]]; - if [[ "$TRAVIS_PHP_VERSION" == "5.3" || "$TRAVIS_PHP_VERSION" == "5.4" ]];
then composer install --dev --prefer-lowest; else then composer install --dev --prefer-lowest; else
composer install --dev; composer install --dev;
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment