hi is it possible to ensure `pants tailor ::` only...
# general
a
hi is it possible to ensure
pants tailor ::
only generate BUILD files for directories mentioned within root_pattern block instead of everything
h
You could run
./pants tailor path/to/dir1 path/to/dir2
if that works?
a
i have a root pattern to
/all/projecta
so my thinking was that it would generate the BUILD files only
can we add it ti the pants.toml
got it working
added
Copy code
[tailor]
ignore_paths = [
 "all/projects/**"
]
h
👍