diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-05-27 23:34:26 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-05-27 23:35:57 +0200 |
commit | 2d0fb52eaa6f13ff3902f65ab3b553a0a51aac5c (patch) | |
tree | 9a861292603f6c1a208e8a15dc2260789ccfaa96 | |
parent | 96b4066368e6e9c7f701daac7440807cce345702 (diff) | |
download | forums-2d0fb52eaa6f13ff3902f65ab3b553a0a51aac5c.tar forums-2d0fb52eaa6f13ff3902f65ab3b553a0a51aac5c.tar.gz forums-2d0fb52eaa6f13ff3902f65ab3b553a0a51aac5c.tar.bz2 forums-2d0fb52eaa6f13ff3902f65ab3b553a0a51aac5c.tar.xz forums-2d0fb52eaa6f13ff3902f65ab3b553a0a51aac5c.zip |
[ticket/11580] Enable --no-interaction option on composer for travis
There is no interaction available on travis ;)
PHPBB3-11580
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index b08d677bc8..3ee5bb9449 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,7 +16,7 @@ before_script: - sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database IF NOT EXISTS phpbb_tests;'; fi" - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then pear install --force phpunit/DbUnit; phpenv rehash; fi" - cd phpBB - - sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' ]; then php ../composer.phar install --dev; fi" + - sh -c "if [ '$TRAVIS_PHP_VERSION' != '5.2' ]; then php ../composer.phar install --dev --no-interaction; fi" - cd .. - sh -c "if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.3.19', '>=');"` = "1" ]; then travis/setup-webserver.sh; fi" |