diff options
Diffstat (limited to 'commands/user_create.go')
-rw-r--r-- | commands/user_create.go | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/commands/user_create.go b/commands/user_create.go index 0dcfa9b3..b5cb0528 100644 --- a/commands/user_create.go +++ b/commands/user_create.go @@ -18,13 +18,12 @@ func newUserCreateCommand() *cobra.Command { options := createUserOptions{} cmd := &cobra.Command{ - Use: "create", - Short: "Create a new identity.", - PreRunE: loadBackend(env), - PostRunE: closeBackend(env), - RunE: func(cmd *cobra.Command, args []string) error { + Use: "create", + Short: "Create a new identity.", + PreRunE: loadBackend(env), + RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error { return runUserCreate(env, options) - }, + }), } flags := cmd.Flags() |