From f2b5c788c06ab8b2c6dab6d1446b00897011dd26 Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Mon, 8 Aug 2016 16:48:42 +0200 Subject: [PATCH] Avoid backslash multiline syntax --- .travis.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4d5da0a..0dc8bde 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,12 +23,11 @@ before_install: - sudo apt-get -y --no-install-recommends install python-scikits-learn=0.14.1-3-cdb2 # Install postgres db and build deps - - sudo apt-get -y install \ - postgresql-9.5 \ - postgresql-server-dev-9.5 \ - postgresql-plpython-9.5 \ - postgresql-9.5-postgis-2.2 \ - postgresql-9.5-postgis-scripts + - sudo apt-get -y install postgresql-9.5 + - sudo apt-get -y install postgresql-server-dev-9.5 + - sudo apt-get -y install postgresql-plpython-9.5 + - sudo apt-get -y install postgresql-9.5-postgis-2.2 + - sudo apt-get -y install postgresql-9.5-postgis-scripts # configure it to accept local connections from postgres - echo -e "# TYPE DATABASE USER ADDRESS METHOD \nlocal all postgres trust\nlocal all all trust\nhost all all 127.0.0.1/32 trust" \