diff options
author | Steve Moyer <smoyer1@selesy.com> | 2022-09-25 17:54:56 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-25 17:54:56 -0400 |
commit | d92c1159f84e07bc6ddb68ba1e5159b44caceb29 (patch) | |
tree | 15c9b2d7db8324cc96b3cc7273c039c50d8155c9 /commands/label.go | |
parent | 8364cb221b2d0d0cfaf9baa3322abdc93cd2258a (diff) | |
parent | 0ffa79ef13890d4bd46079205b3f6682b93985e9 (diff) | |
download | git-bug-d92c1159f84e07bc6ddb68ba1e5159b44caceb29.tar.gz |
Merge pull request #885 from MichaelMure/feat-530-make-label-commands-consistent
feat(530): make label commands consistent
Diffstat (limited to 'commands/label.go')
-rw-r--r-- | commands/label.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/commands/label.go b/commands/label.go index 906974a5..ff4d0151 100644 --- a/commands/label.go +++ b/commands/label.go @@ -20,13 +20,14 @@ func newLabelCommand() *cobra.Command { } cmd.AddCommand(newLabelAddCommand()) + cmd.AddCommand(newLabelLsCommand()) cmd.AddCommand(newLabelRmCommand()) return cmd } func runLabel(env *Env, args []string) error { - b, args, err := _select.ResolveBug(env.backend, args) + b, _, err := _select.ResolveBug(env.backend, args) if err != nil { return err } |