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.go44
1 files changed, 44 insertions, 0 deletions
diff --git a/commands/label_rm.go b/commands/label_rm.go
new file mode 100644
index 00000000..5e9c8f24
--- /dev/null
+++ b/commands/label_rm.go
@@ -0,0 +1,44 @@
+package commands
+
+import (
+ "fmt"
+
+ "github.com/MichaelMure/git-bug/cache"
+ "github.com/MichaelMure/git-bug/commands/select"
+ "github.com/spf13/cobra"
+)
+
+func runLabelRm(cmd *cobra.Command, args []string) error {
+ backend, err := cache.NewRepoCache(repo)
+ if err != nil {
+ return err
+ }
+ defer backend.Close()
+
+ b, args, err := _select.ResolveBug(backend, args)
+ if err != nil {
+ return err
+ }
+
+ changes, err := b.ChangeLabels(nil, args)
+
+ for _, change := range changes {
+ fmt.Println(change)
+ }
+
+ if err != nil {
+ return err
+ }
+
+ return b.Commit()
+}
+
+var labelRmCmd = &cobra.Command{
+ Use: "rm [<id>] <label>[...]",
+ Short: "Remove a label",
+ RunE: runLabelRm,
+}
+
+func init() {
+ labelCmd.AddCommand(labelRmCmd)
+}