diff .travis.yml @ 7722:7e2552cc0b62

chore: split create db and grant to separate psql commands needed to do the same as I did for github issue.
author John Rouillard <rouilj@ieee.org>
date Wed, 27 Dec 2023 23:14:01 -0500
parents 2de6847c3494
children b7a8d9664938
line wrap: on
line diff
--- a/.travis.yml	Wed Dec 27 23:05:16 2023 -0500
+++ b/.travis.yml	Wed Dec 27 23:14:01 2023 -0500
@@ -156,7 +156,8 @@
   # set up postgresql database
   - psql -c "CREATE ROLE rounduptest WITH CREATEDB LOGIN PASSWORD 'rounduptest';" -U postgres
   - psql -c "CREATE ROLE rounduptest_schema LOGIN PASSWORD 'rounduptest';" -U postgres
-  - psql -c "CREATE DATABASE rounduptest_schema;GRANT CREATE ON DATABASE rounduptest_schema TO rounduptest_schema;" -U postgres
+  - psql -c "CREATE DATABASE rounduptest_schema;" -U postgres
+  - psql -c "GRANT CREATE ON DATABASE rounduptest_schema TO rounduptest_schema;" -U postgres
 
   # build the .mo translation files and install them into a tree
   # (locale/locale under roundup directory root) 

Roundup Issue Tracker: http://roundup-tracker.org/