diff options
author | David Barratt <david@davidwbarratt.com> | 2013-02-19 13:19:44 +0100 |
---|---|---|
committer | David Barratt <david@davidwbarratt.com> | 2013-02-19 13:19:44 +0100 |
commit | b63f07a6b9d26fe55dd65d09e0de584629b7e8bc (patch) | |
tree | ef8f64842d022358884d99c0486d0f8f44b32430 /.travis.yml | |
parent | dc5c5a371aeab5af6440c0c39a4501405636b826 (diff) |
Set the --no-progress option for travis composer install command
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3b2f6bd57..ab0aa5616 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ env: - DB=pdo/sqlite before_script: - - composer install --dev + - composer install --dev --no-progress - sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS ci_test;' -U postgres; fi" - sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'create database ci_test;' -U postgres; fi" - sh -c "if [ '$DB' = 'mysql' ] || [ '$DB' = 'mysqli' ] || [ '$DB' = 'pdo/mysql' ]; then mysql -e 'create database IF NOT EXISTS ci_test;'; fi" |