2018-09-17 15:32:33 +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-09-17 15:32:33 +03:00
|
|
|
"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()
|
|
|
|
|
2018-09-18 14:28:01 +03:00
|
|
|
b, args, err := _select.ResolveBug(backend, args)
|
2018-09-17 15:32:33 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-09-18 14:28:01 +03:00
|
|
|
changes, err := b.ChangeLabels(args, nil)
|
2018-09-17 15:32:33 +03:00
|
|
|
|
|
|
|
for _, change := range changes {
|
|
|
|
fmt.Println(change)
|
|
|
|
}
|
|
|
|
|
2018-09-17 15:36:51 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-09-17 15:32:33 +03:00
|
|
|
return b.Commit()
|
|
|
|
}
|
|
|
|
|
|
|
|
var labelAddCmd = &cobra.Command{
|
2018-09-18 14:28:01 +03:00
|
|
|
Use: "add [<id>] <label>[...]",
|
2018-09-21 14:37:22 +03:00
|
|
|
Short: "Add a label",
|
2018-09-17 15:32:33 +03:00
|
|
|
RunE: runLabelAdd,
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2018-09-17 15:33:34 +03:00
|
|
|
labelCmd.AddCommand(labelAddCmd)
|
2018-09-17 15:32:33 +03:00
|
|
|
}
|