Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove mention of rename-buildpack in related cmds
"rename-buildpack" no longer exists as a command: it was removed by
commit ba9cea0.

Signed-off-by: Marc Khouzam <[email protected]>
  • Loading branch information
marckhouzam committed Oct 3, 2025
commit 20dfdd5cd4105c9a71feceee22ef31d3c2a098b6
2 changes: 1 addition & 1 deletion command/v7/buildpacks_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type BuildpacksCommand struct {
BaseCommand

usage interface{} `usage:"CF_NAME buildpacks [--labels SELECTOR] [--lifecycle buildpack|cnb]\n\nEXAMPLES:\n CF_NAME buildpacks\n CF_NAME buildpacks --labels 'environment in (production,staging),tier in (backend)'\n CF_NAME buildpacks --labels 'env=dev,!chargeback-code,tier in (backend,worker)'\n CF_NAME buildpacks --lifecycle cnb"`
relatedCommands interface{} `related_commands:"create-buildpack, delete-buildpack, rename-buildpack, update-buildpack"`
relatedCommands interface{} `related_commands:"create-buildpack, delete-buildpack, update-buildpack"`
Labels string `long:"labels" description:"Selector to filter buildpacks by labels"`
Lifecycle string `long:"lifecycle" description:"Filter buildpacks by lifecycle ('buildpack' or 'cnb')"`
}
Expand Down
2 changes: 1 addition & 1 deletion command/v7/stacks_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type StacksCommand struct {
BaseCommand

usage interface{} `usage:"CF_NAME stacks [--labels SELECTOR]\n\nEXAMPLES:\n CF_NAME stacks\n CF_NAME stacks --labels 'environment in (production,staging),tier in (backend)'\n CF_NAME stacks --labels 'env=dev,!chargeback-code,tier in (backend,worker)'"`
relatedCommands interface{} `related_commands:"create-buildpack, delete-buildpack, rename-buildpack, stack, update-buildpack"`
relatedCommands interface{} `related_commands:"create-buildpack, delete-buildpack, stack, update-buildpack"`
Labels string `long:"labels" description:"Selector to filter stacks by labels"`
}

Expand Down