diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e20294c8..604fdfd6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,10 @@ can be found in [Pivotal Documentation](docs.pivotal.io/platform-automation). This ensures that commands are not kept in `bash` history. The environment variable `OM_PASSWORD` will overwrite the password value in `env.yml`. +## 7.0.1 +### Bug Fixes +- Some of the `-c` short flags were conflicting with short values. + ## 7.0.0 ### Breaking Changes - Because of code changes in `om`, the long command line flags no longer support single dash assignment. diff --git a/cmd/loadConfigFile.go b/cmd/loadConfigFile.go index dc2787b5d..0c20e11bf 100644 --- a/cmd/loadConfigFile.go +++ b/cmd/loadConfigFile.go @@ -19,11 +19,15 @@ func loadConfigFile(args []string, envFunc func() []string) ([]string, error) { } for _, cmdConfigBypassList := range []string{ - "interpolate", + "apply-changes", + "bosh-env", + "configure-director", "configure-opsman", "configure-product", - "configure-director", + "credentials", + "interpolate", "stage-product", + "staged-config", "vm-lifecycle", } { if cmdConfigBypassList == args[0] { diff --git a/commands/disable_product_verfiers.go b/commands/disable_product_verfiers.go index 1de11a9a9..ef702bc0d 100644 --- a/commands/disable_product_verfiers.go +++ b/commands/disable_product_verfiers.go @@ -12,7 +12,7 @@ type DisableProductVerifiers struct { presenter presenters.FormattedPresenter logger logger Options struct { - ProductName string `long:"product-name" short:"c" required:"true" description:"the name of the product"` + ProductName string `long:"product-name" short:"n" required:"true" description:"the name of the product"` VerifierTypes []string `long:"type" short:"t" description:"verifier types to disable" required:"true"` } }