aboutsummaryrefslogtreecommitdiffstats
path: root/commands/label.go
diff options
context:
space:
mode:
authorSteve Moyer <smoyer1@selesy.com>2022-09-25 15:22:03 -0400
committerSteve Moyer <smoyer1@selesy.com>2022-09-25 15:22:03 -0400
commit0ffa79ef13890d4bd46079205b3f6682b93985e9 (patch)
tree15c9b2d7db8324cc96b3cc7273c039c50d8155c9 /commands/label.go
parent8364cb221b2d0d0cfaf9baa3322abdc93cd2258a (diff)
downloadgit-bug-0ffa79ef13890d4bd46079205b3f6682b93985e9.tar.gz
feat(530) make label commands consistent
Diffstat (limited to 'commands/label.go')
-rw-r--r--commands/label.go3
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
}