mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 17:51:44 +03:00
146b6b8599
- Informed that label command adds/removes a label to a given bug. - Added suggestion to use select command when omitting to provide a bug id as argument. - Added a bit more detail for the select command documentation, giving a hint to "deselect" command.
46 lines
819 B
Go
46 lines
819 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 to/from a bug.",
|
|
PreRunE: loadRepo,
|
|
RunE: runLabel,
|
|
}
|
|
|
|
func init() {
|
|
RootCmd.AddCommand(labelCmd)
|
|
|
|
labelCmd.Flags().SortFlags = false
|
|
}
|