diff options
Diffstat (limited to 'commands/user_adopt.go')
-rw-r--r-- | commands/user_adopt.go | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/commands/user_adopt.go b/commands/user_adopt.go index 5ab6e39c..166063ae 100644 --- a/commands/user_adopt.go +++ b/commands/user_adopt.go @@ -8,14 +8,13 @@ func newUserAdoptCommand() *cobra.Command { env := newEnv() cmd := &cobra.Command{ - Use: "adopt USER-ID", - Short: "Adopt an existing identity as your own.", - Args: cobra.ExactArgs(1), - PreRunE: loadBackend(env), - PostRunE: closeBackend(env), - RunE: func(cmd *cobra.Command, args []string) error { + Use: "adopt USER-ID", + Short: "Adopt an existing identity as your own.", + Args: cobra.ExactArgs(1), + PreRunE: loadBackend(env), + RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error { return runUserAdopt(env, args) - }, + }), } return cmd |