From 9e17e7681eccd6ec6bc8b815e6981240e96e1a41 Mon Sep 17 00:00:00 2001 From: Aidan Delaney Date: Wed, 12 Jul 2023 15:14:41 +0100 Subject: [PATCH] Update the summary of `yank` Do not summarise the `yank` subcommand using the term "yank". Instead describe the effect of the operation. Signed-off-by: Aidan Delaney --- internal/commands/buildpack_yank.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/commands/buildpack_yank.go b/internal/commands/buildpack_yank.go index ee2e118493..e17ecac7af 100644 --- a/internal/commands/buildpack_yank.go +++ b/internal/commands/buildpack_yank.go @@ -23,7 +23,7 @@ func BuildpackYank(logger logging.Logger, cfg config.Config, pack PackClient) *c cmd := &cobra.Command{ Use: "yank ", Args: cobra.ExactArgs(1), - Short: "Yank a buildpack from a registry", + Short: "Mark a buildpack on a Buildpack registry as unusable", Example: "pack yank my-buildpack@0.0.1", RunE: logError(logger, func(cmd *cobra.Command, args []string) error { buildpackIDVersion := args[0]