Skip to content

Commit 5be4bee

Browse files
committed
chore: split create db and grant to separate psql commands
needed to do the same as I did for github issue.
1 parent ed8280a commit 5be4bee

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,8 @@ before_script:
156156
# set up postgresql database
157157
- psql -c "CREATE ROLE rounduptest WITH CREATEDB LOGIN PASSWORD 'rounduptest';" -U postgres
158158
- psql -c "CREATE ROLE rounduptest_schema LOGIN PASSWORD 'rounduptest';" -U postgres
159-
- psql -c "CREATE DATABASE rounduptest_schema;GRANT CREATE ON DATABASE rounduptest_schema TO rounduptest_schema;" -U postgres
159+
- psql -c "CREATE DATABASE rounduptest_schema;" -U postgres
160+
- psql -c "GRANT CREATE ON DATABASE rounduptest_schema TO rounduptest_schema;" -U postgres
160161

161162
# build the .mo translation files and install them into a tree
162163
# (locale/locale under roundup directory root)

0 commit comments

Comments
 (0)