From 3027ac57e996f677c55ee5ddafabc16dcbbeb410 Mon Sep 17 00:00:00 2001 From: Richard70NL Date: Thu, 9 May 2019 20:56:01 +0200 Subject: [PATCH] Update .travis.yml --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8846350..5a17a3b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,10 +10,10 @@ addons: - postgres after_install: - - if [ "$TRAVIS_OS_NAME" == "osx" ] ; then brew services start postgresql ;' -U postgres ; fi + - if [ "$TRAVIS_OS_NAME" == "osx" ] ; then brew services start postgresql ; fi before_script: - - if [ "$TRAVIS_OS_NAME" != "windows" ] ; then psql -c 'create user dialogue_test with login nosuperuser inherit nocreatedb nocreaterole noreplication ;' -U postgres ; fi + - if [ "$TRAVIS_OS_NAME" != "windows" ] ; then psql -c 'create user dialogue_test with login nosuperuser inherit nocreatedb nocreaterole noreplication;' -U postgres ; fi - if [ "$TRAVIS_OS_NAME" != "windows" ] ; then psql -c 'create database dialogue_test with owner dialogue_test;' -U postgres ; fi - if [ "$TRAVIS_OS_NAME" != "windows" ] ; then psql -c 'drop schema if exists dialogue cascade;' -d dialogue_test -U dialogue_test ; fi