git-bug/commands/label.go

46 lines
819 B
Go
Raw Normal View History

2018-07-18 17:41:09 +03:00
package commands
import (
"fmt"
2018-08-13 19:32:11 +03:00
"github.com/MichaelMure/git-bug/cache"
"github.com/MichaelMure/git-bug/commands/select"
"github.com/MichaelMure/git-bug/util/interrupt"
"github.com/spf13/cobra"
2018-07-18 17:41:09 +03:00
)
func runLabel(cmd *cobra.Command, args []string) error {
backend, err := cache.NewRepoCache(repo)
if err != nil {
return err
}
defer backend.Close()
interrupt.RegisterCleaner(backend.Close)
b, args, err := _select.ResolveBug(backend, args)
2018-07-18 17:41:09 +03:00
if err != nil {
return err
}
snap := b.Snapshot()
for _, l := range snap.Labels {
fmt.Println(l)
2018-07-18 17:41:09 +03:00
}
return nil
2018-07-18 17:41:09 +03:00
}
var labelCmd = &cobra.Command{
Use: "label [<id>]",
Short: "Display, add or remove labels to/from a bug.",
PreRunE: loadRepo,
RunE: runLabel,
}
func init() {
2018-07-20 16:46:14 +03:00
RootCmd.AddCommand(labelCmd)
labelCmd.Flags().SortFlags = false
2018-07-18 17:41:09 +03:00
}