Merge pull request #638 from dark-panda/fix-pg-createuser

Fix a syntax error on the PostgreSQL `createuser` utility
This commit is contained in:
Julien Nicoulaud 2019-06-18 19:51:08 +02:00 committed by GitHub
commit 303c6c532d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -404,9 +404,9 @@ _createuser () {
{-R,--no-createrole}'[role cannot create roles]' \
{-s,--superuser}'[role will be superuser]' \
{-S,--no-superuser}'[role will not be superuser]' \
{--interactive}'[prompt for missing role name and attributes rather than using defaults]' \
{--replication}'[role can initiate replication]' \
{--no-replication}'[role cannot initiate replication]' \
--interactive'[prompt for missing role name and attributes rather than using defaults]' \
--replication'[role can initiate replication]' \
--no-replication'[role cannot initiate replication]' \
}
_dropuser () {