Skip to content

Commit

Permalink
Make consistent, the naming of the plugin from CreateServicePush to C…
Browse files Browse the repository at this point in the history
…reate-Service-Push
  • Loading branch information
David Wu committed Apr 3, 2018
1 parent 656da5d commit 2ba05df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ build:
go build .

cf:
cf uninstall-plugin CreateServicePush || true
cf uninstall-plugin Create-Service-Push || true
cf install-plugin CF-CLI-Create-Service-Push-Plugin

it: build cf
4 changes: 2 additions & 2 deletions create-services-plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"code.cloudfoundry.org/cli/plugin"
)

// CreateServicePush is the struct implementing the interface defined by the core CLI. It can
// Create-Service-Push is the struct implementing the interface defined by the core CLI. It can
// be found at "code.cloudfoundry.org/cli/plugin/plugin.go"
type CreateServicePush struct {
manifest *Manifest
Expand Down Expand Up @@ -180,7 +180,7 @@ func (c *CreateServicePush) createService(name, broker, plan, JSONParam string)
// to the user in the core commands `cf help`, `cf`, or `cf -h`.
func (c *CreateServicePush) GetMetadata() plugin.PluginMetadata {
return plugin.PluginMetadata{
Name: "CreateServicePush",
Name: "Create-Service-Push",
Version: plugin.VersionType{
Major: 1,
Minor: 0,
Expand Down

0 comments on commit 2ba05df

Please sign in to comment.