From 2ab70accf4c96599ba52ec775d94342c89988d86 Mon Sep 17 00:00:00 2001 From: J Smith Date: Fri, 14 Jun 2019 16:11:51 -0300 Subject: [PATCH] Fix a syntax error on the PostgreSQL `createuser` utility --- src/_pgsql_utils | 6 +++--- 1 file 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 () {