From a122d533f6b3e46ab4c79bd39bbb764d59824983 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 24 Sep 2018 15:20:19 +0200 Subject: commands: cleanup file name --- commands/label_add.go | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 commands/label_add.go (limited to 'commands/label_add.go') diff --git a/commands/label_add.go b/commands/label_add.go new file mode 100644 index 00000000..06c4e6c5 --- /dev/null +++ b/commands/label_add.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 runLabelAdd(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(args, nil) + + for _, change := range changes { + fmt.Println(change) + } + + if err != nil { + return err + } + + return b.Commit() +} + +var labelAddCmd = &cobra.Command{ + Use: "add []