Skip to content

Commit

Permalink
Merge pull request #196 from janvanmansum/v6.0-DANS-DataStation-fix-i…
Browse files Browse the repository at this point in the history
…nstaller

Back-ported syntax error fix in installer
  • Loading branch information
janvanmansum authored Jan 12, 2024
2 parents 2b7e43d + ea2d1f0 commit 58dd061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/installer/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@

# 3e. set permissions:

conn_cmd = "GRANT CREATE PRIVILEGES on DATABASE "+pgDb+" to "+pgUser+";"
conn_cmd = "GRANT ALL PRIVILEGES on DATABASE "+pgDb+" to "+pgUser+";"
try:
cur.execute(conn_cmd)
except:
Expand Down

0 comments on commit 58dd061

Please sign in to comment.