clarify recursive flag description

pull/6/head
Mike Metral 2016-06-16 13:46:01 -07:00
parent 3ba5816e46
commit 6b172657b0
1 changed files with 1 additions and 1 deletions

View File

@ -334,7 +334,7 @@ func AddValidateFlags(cmd *cobra.Command) {
}
func AddRecursiveFlag(cmd *cobra.Command, value *bool) {
cmd.Flags().BoolVarP(value, "recursive", "R", *value, "If true, process directory recursively.")
cmd.Flags().BoolVarP(value, "recursive", "R", *value, "Process the directory used in -f, --filename recursively. Useful when you want to manage related manifests organized within the same directory.")
}
// AddDryRunFlag adds dry-run flag to a command. Usually used by mutations.