2018-09-17 15:36:51 +03:00
|
|
|
package commands
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/MichaelMure/git-bug/cache"
|
2018-09-18 14:28:01 +03:00
|
|
|
"github.com/MichaelMure/git-bug/commands/select"
|
2018-10-25 00:36:39 +03:00
|
|
|
"github.com/MichaelMure/git-bug/util/interrupt"
|
2018-09-17 15:36:51 +03:00
|
|
|
"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()
|
2018-10-25 00:36:39 +03:00
|
|
|
interrupt.RegisterCleaner(backend.Close)
|
2018-09-17 15:36:51 +03:00
|
|
|
|
2018-09-18 14:28:01 +03:00
|
|
|
b, args, err := _select.ResolveBug(backend, args)
|
2018-09-17 15:36:51 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-02-24 14:58:04 +03:00
|
|
|
changes, _, err := b.ChangeLabels(nil, args)
|
2018-09-17 15:36:51 +03:00
|
|
|
|
|
|
|
for _, change := range changes {
|
|
|
|
fmt.Println(change)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return b.Commit()
|
|
|
|
}
|
|
|
|
|
|
|
|
var labelRmCmd = &cobra.Command{
|
2018-10-17 21:38:10 +03:00
|
|
|
Use: "rm [<id>] <label>[...]",
|
2019-03-23 19:59:40 +03:00
|
|
|
Short: "Remove a label from a bug.",
|
2018-10-17 21:38:10 +03:00
|
|
|
PreRunE: loadRepo,
|
|
|
|
RunE: runLabelRm,
|
2018-09-17 15:36:51 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
labelCmd.AddCommand(labelRmCmd)
|
|
|
|
}
|