diff options
Diffstat (limited to 'commands/title_edit.go')
-rw-r--r-- | commands/title_edit.go | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/commands/title_edit.go b/commands/title_edit.go index 09415e49..810c5e62 100644 --- a/commands/title_edit.go +++ b/commands/title_edit.go @@ -18,13 +18,12 @@ func newTitleEditCommand() *cobra.Command { options := titleEditOptions{} cmd := &cobra.Command{ - Use: "edit [ID]", - Short: "Edit a title of a bug.", - PreRunE: loadBackendEnsureUser(env), - PostRunE: closeBackend(env), - RunE: func(cmd *cobra.Command, args []string) error { + Use: "edit [ID]", + Short: "Edit a title of a bug.", + PreRunE: loadBackendEnsureUser(env), + RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error { return runTitleEdit(env, options, args) - }, + }), } flags := cmd.Flags() |