clarify recursive flag description

This commit is contained in:
Mike Metral 2016-06-16 13:46:01 -07:00
parent 3ba5816e46
commit 6b172657b0

View File

@ -334,7 +334,7 @@ func AddValidateFlags(cmd *cobra.Command) {
} }
func AddRecursiveFlag(cmd *cobra.Command, value *bool) { 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. // AddDryRunFlag adds dry-run flag to a command. Usually used by mutations.