diff options
Diffstat (limited to 'commands/status.go')
-rw-r--r-- | commands/status.go | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/commands/status.go b/commands/status.go index 4dceb51c..c1e45c5f 100644 --- a/commands/status.go +++ b/commands/status.go @@ -9,13 +9,12 @@ func newStatusCommand() *cobra.Command { env := newEnv() cmd := &cobra.Command{ - Use: "status [ID]", - Short: "Display or change a bug status.", - PreRunE: loadBackend(env), - PostRunE: closeBackend(env), - RunE: func(cmd *cobra.Command, args []string) error { + Use: "status [ID]", + Short: "Display or change a bug status.", + PreRunE: loadBackend(env), + RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error { return runStatus(env, args) - }, + }), } cmd.AddCommand(newStatusCloseCommand()) |