Skip to content
This repository has been archived by the owner on May 3, 2022. It is now read-only.

Commit

Permalink
Fixed typo in uninstall doc string (#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
itowlson committed Feb 27, 2019
1 parent 5ad6131 commit ff434d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/duffle/uninstall.go
Expand Up @@ -52,7 +52,7 @@ func newUninstallCmd(w io.Writer) *cobra.Command {
flags.StringArrayVarP(&uninstall.credentialsFiles, "credentials", "c", []string{}, "Specify credentials to use inside the CNAB bundle. This can be a credentialset name or a path to a file.")
flags.StringVarP(&uninstall.valuesFile, "parameters", "p", "", "Specify file containing parameters. Formats: toml, MORE SOON")
flags.StringVarP(&uninstall.bundle, "bundle", "b", "", "bundle to uninstall")
flags.StringVar(&uninstall.bundleFile, "bundle-file", "", "path to a bundle file to uninstal")
flags.StringVar(&uninstall.bundleFile, "bundle-file", "", "path to a bundle file to uninstall")
flags.StringArrayVarP(&uninstall.setParams, "set", "s", []string{}, "set individual parameters as NAME=VALUE pairs")
flags.BoolVarP(&uninstall.insecure, "insecure", "k", false, "Do not verify the bundle (INSECURE)")

Expand Down

0 comments on commit ff434d3

Please sign in to comment.