From 492aae7063af8cbe80100e613d004d840dafe2ab Mon Sep 17 00:00:00 2001 From: Marton Soos Date: Tue, 24 Mar 2020 11:11:24 +0100 Subject: [PATCH] Update force flag description --- internals/secrethub/inject.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internals/secrethub/inject.go b/internals/secrethub/inject.go index 3455b8eb..a1eb242f 100644 --- a/internals/secrethub/inject.go +++ b/internals/secrethub/inject.go @@ -71,7 +71,7 @@ func (cmd *InjectCommand) Register(r command.Registerer) { clause.Flag("var", "Define the value for a template variable with `VAR=VALUE`, e.g. --var env=prod").Short('v').StringMapVar(&cmd.templateVars) clause.Flag("template-version", "The template syntax version to be used. The options are v1, v2, latest or auto to automatically detect the version.").Default("auto").StringVar(&cmd.templateVersion) clause.Flag("no-prompt", "Do not prompt when a template variable is missing and return an error instead.").BoolVar(&cmd.dontPromptMissingTemplateVars) - clause.Flag("force", "Overwrite the output file if it already exists, without prompting for confirmation.").Short('f').BoolVar(&cmd.force) + clause.Flag("force", "Overwrite the output file if it already exists, without prompting for confirmation. This flag is ignored if no --output-file is supplied.").Short('f').BoolVar(&cmd.force) command.BindAction(clause, cmd.Run) }