<https://www.pantsbuild.org/stable/reference/subsy...
# general
p
https://www.pantsbuild.org/stable/reference/subsystems/source Is there anyway to say
any
in root_patterns? For example: I want
src/python/**/src
matches
src/python/a/src
and
src/python/a/b/c/d/src
f
What about a single
*
?
src/python/*/src
assuming that is the behavior you would like
Or did you want the
**
-type behavior and it is not working?
p
** doesn't work
* seems to only allow SINGLE "nesting"
f
You might want to look at the
marker_filenames
option if there's already a commonly-named file in all of your nested directories (or you could add one)
👍 1