diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-06-29 13:47:03 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-06-29 13:47:03 +0100 |
commit | 7dc0b3602c09090fbb1080e9c6ee7b1f809bb61d (patch) | |
tree | f50ac26e67c12f6116a818d3b3634029e73d1966 | |
parent | 049e4046ece2d1dd03bb56adf846f7df0a491058 (diff) |
Attempt to make travis steup steps non-interactive
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 345afe708..a09976ee7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,8 @@ rvm: before_install: - git submodule update --init --recursive - sudo apt-get update - - sudo apt-get install `cut -d " " -f 1 config/packages | egrep -v "(^#|wkhtml|bundler)"` + - export DEBIAN_FRONTEND=noninteractive + - sudo apt-get -y install `cut -d " " -f 1 config/packages | egrep -v "(^#|wkhtml|bundler)"` before_script: - psql -c 'create database foi_test template template0 encoding sql_ascii;' -U postgres - co database.yml database.yml-test |