aboutsummaryrefslogtreecommitdiffstats
path: root/commands/label rm.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-09-24 15:20:19 +0200
committerMichael Muré <batolettre@gmail.com>2018-09-24 15:20:19 +0200
commita122d533f6b3e46ab4c79bd39bbb764d59824983 (patch)
tree0ab978909c0f7acdcb9b0b39ea044de5bc4e7fd6 /commands/label rm.go
parentc3a5213f829444452e1971822529a57da613831d (diff)
downloadgit-bug-a122d533f6b3e46ab4c79bd39bbb764d59824983.tar.gz
commands: cleanup file name
Diffstat (limited to 'commands/label rm.go')
-rw-r--r--commands/label rm.go44
1 files changed, 0 insertions, 44 deletions
diff --git a/commands/label rm.go b/commands/label rm.go
deleted file mode 100644
index 5e9c8f24..00000000
--- a/commands/label rm.go
+++ /dev/null
@@ -1,44 +0,0 @@
-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)
-}