aboutsummaryrefslogtreecommitdiffstats
path: root/commands/label_rm.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/label_rm.go')
-rw-r--r--commands/label_rm.go45
1 files changed, 0 insertions, 45 deletions
diff --git a/commands/label_rm.go b/commands/label_rm.go
deleted file mode 100644
index 3f4e1958..00000000
--- a/commands/label_rm.go
+++ /dev/null
@@ -1,45 +0,0 @@
-package commands
-
-import (
- "github.com/spf13/cobra"
-
- _select "github.com/MichaelMure/git-bug/commands/select"
- "github.com/MichaelMure/git-bug/util/text"
-)
-
-func newLabelRmCommand() *cobra.Command {
- env := newEnv()
-
- cmd := &cobra.Command{
- Use: "rm [ID] LABEL...",
- Short: "Remove a label from a bug.",
- PreRunE: loadBackend(env),
- RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
- return runLabelRm(env, args)
- }),
- ValidArgsFunction: completeBugAndLabels(env, false),
- }
-
- return cmd
-}
-
-func runLabelRm(env *Env, args []string) error {
- b, args, err := _select.ResolveBug(env.backend, args)
- if err != nil {
- return err
- }
-
- removed := args
-
- changes, _, err := b.ChangeLabels(nil, text.CleanupOneLineArray(removed))
-
- for _, change := range changes {
- env.out.Println(change)
- }
-
- if err != nil {
- return err
- }
-
- return b.Commit()
-}