mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
46 lines
805 B
Go
46 lines
805 B
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/MichaelMure/git-bug/cache"
|
|
"github.com/MichaelMure/git-bug/commands/select"
|
|
"github.com/MichaelMure/git-bug/util/interrupt"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
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)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
snap := b.Snapshot()
|
|
|
|
for _, l := range snap.Labels {
|
|
fmt.Println(l)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
var labelCmd = &cobra.Command{
|
|
Use: "label [<id>]",
|
|
Short: "Display, add or remove labels.",
|
|
PreRunE: loadRepo,
|
|
RunE: runLabel,
|
|
}
|
|
|
|
func init() {
|
|
RootCmd.AddCommand(labelCmd)
|
|
|
|
labelCmd.Flags().SortFlags = false
|
|
}
|