Skip to content

Commit 803f4aa

Browse files
authored
Merge branch 'v8' into routable
2 parents ee0f6d7 + e36f394 commit 803f4aa

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

command/plugin/repo_plugins_command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
type RepoPluginsCommand struct {
99
RegisteredRepository string `short:"r" description:"Name of a registered repository"`
1010
usage interface{} `usage:"CF_NAME repo-plugins [-r REPO_NAME]\n\nEXAMPLES:\n CF_NAME repo-plugins -r PrivateRepo"`
11-
relatedCommands interface{} `related_commands:"add-plugin-repo, delete-plugin-repo, install-plugin"`
11+
relatedCommands interface{} `related_commands:"add-plugin-repo, remove-plugin-repo, install-plugin"`
1212
}
1313

1414
func (RepoPluginsCommand) Setup(config command.Config, ui command.UI) error {

command/v7/buildpacks_command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type BuildpacksCommand struct {
1313
BaseCommand
1414

1515
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"`
16-
relatedCommands interface{} `related_commands:"create-buildpack, delete-buildpack, rename-buildpack, update-buildpack"`
16+
relatedCommands interface{} `related_commands:"create-buildpack, delete-buildpack, update-buildpack"`
1717
Labels string `long:"labels" description:"Selector to filter buildpacks by labels"`
1818
Lifecycle string `long:"lifecycle" description:"Filter buildpacks by lifecycle ('buildpack' or 'cnb')"`
1919
}

command/v7/delete_orphaned_routes_command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ type DeleteOrphanedRoutesCommand struct {
55

66
usage interface{} `usage:"CF_NAME delete-orphaned-routes [-f]\n"`
77
Force bool `short:"f" description:"Force deletion without confirmation"`
8-
relatedCommands interface{} `related_commands:"delete-routes, routes"`
8+
relatedCommands interface{} `related_commands:"delete-route, routes"`
99
}
1010

1111
func (cmd DeleteOrphanedRoutesCommand) Execute(args []string) error {

command/v7/stacks_command.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type StacksCommand struct {
1212
BaseCommand
1313

1414
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)'"`
15-
relatedCommands interface{} `related_commands:"create-buildpack, delete-buildpack, rename-buildpack, stack, update-buildpack"`
15+
relatedCommands interface{} `related_commands:"create-buildpack, delete-buildpack, stack, update-buildpack"`
1616
Labels string `long:"labels" description:"Selector to filter stacks by labels"`
1717
}
1818

integration/v7/isolated/buildpacks_command_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var _ = Describe("buildpacks command", func() {
3232
Eventually(session).Should(Say("OPTIONS:"))
3333
Eventually(session).Should(Say(`--labels\s+Selector to filter buildpacks by labels`))
3434
Eventually(session).Should(Say("SEE ALSO:"))
35-
Eventually(session).Should(Say("create-buildpack, delete-buildpack, rename-buildpack, update-buildpack"))
35+
Eventually(session).Should(Say("create-buildpack, delete-buildpack, update-buildpack"))
3636
Eventually(session).Should(Exit(0))
3737
})
3838
})

integration/v7/isolated/delete_orphaned_routes_command_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var _ = Describe("delete-orphaned-routes command", func() {
3434
Eventually(session).Should(Say(`\n`))
3535

3636
Eventually(session).Should(Say(`SEE ALSO:`))
37-
Eventually(session).Should(Say(`delete-routes, routes`))
37+
Eventually(session).Should(Say(`delete-route, routes`))
3838

3939
Eventually(session).Should(Exit(0))
4040
})

integration/v7/isolated/stacks_command_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var _ = Describe("stacks command", func() {
3333
Eventually(session).Should(Say("OPTIONS:"))
3434
Eventually(session).Should(Say(`--labels\s+Selector to filter stacks by labels`))
3535
Eventually(session).Should(Say("SEE ALSO:"))
36-
Eventually(session).Should(Say("create-buildpack, delete-buildpack, rename-buildpack, stack, update-buildpack"))
36+
Eventually(session).Should(Say("create-buildpack, delete-buildpack, stack, update-buildpack"))
3737
Eventually(session).Should(Exit(0))
3838
})
3939
})

0 commit comments

Comments
 (0)