From ff434d3e5537be5319880e06edbd55ceaf92f282 Mon Sep 17 00:00:00 2001 From: itowlson Date: Thu, 28 Feb 2019 09:30:27 +1300 Subject: [PATCH] Fixed typo in uninstall doc string (#655) --- cmd/duffle/uninstall.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/duffle/uninstall.go b/cmd/duffle/uninstall.go index bdc35e89..e66b4ee4 100644 --- a/cmd/duffle/uninstall.go +++ b/cmd/duffle/uninstall.go @@ -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)")