diff options
| author | J Smith <dark.panda@gmail.com> | 2019-06-14 16:11:51 -0300 |
|---|---|---|
| committer | J Smith <dark.panda@gmail.com> | 2019-06-14 16:12:15 -0300 |
| commit | 2ab70accf4c96599ba52ec775d94342c89988d86 (patch) | |
| tree | 2254e4a221ec7cae85a61811e2aa551a4b136332 /src/_pgsql_utils | |
| parent | Merge pull request #615 from jheidbrink/master (diff) | |
| download | zsh-completions-2ab70accf4c96599ba52ec775d94342c89988d86.tar zsh-completions-2ab70accf4c96599ba52ec775d94342c89988d86.tar.gz zsh-completions-2ab70accf4c96599ba52ec775d94342c89988d86.tar.bz2 zsh-completions-2ab70accf4c96599ba52ec775d94342c89988d86.tar.lz zsh-completions-2ab70accf4c96599ba52ec775d94342c89988d86.tar.xz zsh-completions-2ab70accf4c96599ba52ec775d94342c89988d86.tar.zst zsh-completions-2ab70accf4c96599ba52ec775d94342c89988d86.zip | |
Fix a syntax error on the PostgreSQL `createuser` utility
Diffstat (limited to 'src/_pgsql_utils')
| -rw-r--r-- | src/_pgsql_utils | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/_pgsql_utils b/src/_pgsql_utils index ae44844..8c00089 100644 --- a/src/_pgsql_utils +++ b/src/_pgsql_utils @@ -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 () { |
