diff options
author | Fyorl <gaelreth@gmail.com> | 2012-07-16 18:45:10 +0100 |
---|---|---|
committer | Fyorl <gaelreth@gmail.com> | 2012-07-17 21:39:49 +0100 |
commit | aa2f7bcc2c56fdd82cb07e9794d6114d4b2c359c (patch) | |
tree | 94d6d35b77f3b846e7e2a6a74dbc8f61d235a6f6 | |
parent | 74074994ba7a1af3ccd017006fc1808c2527706b (diff) | |
download | forums-aa2f7bcc2c56fdd82cb07e9794d6114d4b2c359c.tar forums-aa2f7bcc2c56fdd82cb07e9794d6114d4b2c359c.tar.gz forums-aa2f7bcc2c56fdd82cb07e9794d6114d4b2c359c.tar.bz2 forums-aa2f7bcc2c56fdd82cb07e9794d6114d4b2c359c.tar.xz forums-aa2f7bcc2c56fdd82cb07e9794d6114d4b2c359c.zip |
[ticket/10981] Added check for PHP version before running composer
PHPBB3-10981
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 1a584add86..7c7ba36bfb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ before_script: - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then pear install --force phpunit/DbUnit; else pyrus install --force phpunit/DbUnit; fi" - phpenv rehash - cd phpBB - - php ../composer.phar install --dev + - sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' ]; then php ../composer.phar install --dev; fi" - cd .. script: |