From fc06eeba877a6e3b6f7247ca65296ec5b8fa8d13 Mon Sep 17 00:00:00 2001 From: Nick Anderson Date: Tue, 17 Mar 2020 13:35:38 -0500 Subject: [PATCH] Fixed note about brace expansion in globbing for findfiles() Ticket: CFE-2606 Changelog: Title (cherry picked from commit 486869d2354c4d7309cd6a41a92e18e19c89a740) --- reference/functions/findfiles.markdown | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reference/functions/findfiles.markdown b/reference/functions/findfiles.markdown index d98dd9972..ea564a11a 100644 --- a/reference/functions/findfiles.markdown +++ b/reference/functions/findfiles.markdown @@ -19,11 +19,13 @@ across directories. `*/*.cf` on the other hand will look two levels deep. * `?` matches a single letter * `[a-z]` matches any letter from `a` to `z` -* `{x,y,anything}` will match `x` or `y` or `anything`. This function, used together with the `bundlesmatching` function, allows you to do dynamic inputs and a dynamic bundle call chain. +**Notes:** + +- Brace expansion is not currently supported, `{x,y,anything}` will not match `x` or `y` or `anything`. **Example:**