From 83b8b7a575eb567fdecc0086cd70b15163df016c Mon Sep 17 00:00:00 2001 From: Jaime Perez Crespo <jaime.perez@uninett.no> Date: Thu, 24 Dec 2015 17:02:35 +0100 Subject: [PATCH] Fix syntax of the if statement. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b29432eef..63ceca6a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,7 @@ matrix: allow_failures: - php: hhvm 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 composer install --dev; fi -- GitLab