aboutsummaryrefslogtreecommitdiffstats
path: root/commands/ls-labels.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/ls-labels.go
parent8364cb221b2d0d0cfaf9baa3322abdc93cd2258a (diff)
downloadgit-bug-0ffa79ef13890d4bd46079205b3f6682b93985e9.tar.gz
feat(530) make label commands consistent
Diffstat (limited to 'commands/ls-labels.go')
-rw-r--r--commands/ls-labels.go18
1 files changed, 7 insertions, 11 deletions
diff --git a/commands/ls-labels.go b/commands/ls-labels.go
index 086943a9..00fc3fe6 100644
--- a/commands/ls-labels.go
+++ b/commands/ls-labels.go
@@ -15,19 +15,15 @@ func newLsLabelCommand() *cobra.Command {
Note: in the future, a proper label policy could be implemented where valid labels are defined in a configuration file. Until that, the default behavior is to return the list of labels already used.`,
PreRunE: loadBackend(env),
RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
- return runLsLabel(env)
+ return runLabelLs(env)
}),
- }
-
- return cmd
-}
-
-func runLsLabel(env *Env) error {
- labels := env.backend.ValidLabels()
+ Deprecated: ` and will be removed in v1.0.
- for _, l := range labels {
- env.out.Println(l)
+The functionality provided by this command is now provided by
+the following (equivalent) command:
+git-bug label ls
+`,
}
- return nil
+ return cmd
}