aboutsummaryrefslogtreecommitdiffstats
path: root/commands/label.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/label.go')
-rw-r--r--commands/label.go11
1 files changed, 5 insertions, 6 deletions
diff --git a/commands/label.go b/commands/label.go
index e3ffdb64..d108b089 100644
--- a/commands/label.go
+++ b/commands/label.go
@@ -10,13 +10,12 @@ func newLabelCommand() *cobra.Command {
env := newEnv()
cmd := &cobra.Command{
- Use: "label [ID]",
- Short: "Display, add or remove labels to/from a bug.",
- PreRunE: loadBackend(env),
- PostRunE: closeBackend(env),
- RunE: func(cmd *cobra.Command, args []string) error {
+ Use: "label [ID]",
+ Short: "Display, add or remove labels to/from a bug.",
+ PreRunE: loadBackend(env),
+ RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
return runLabel(env, args)
- },
+ }),
}
cmd.AddCommand(newLabelAddCommand())