you can't feed the output of `pants peek` into som...
# general
a
you can't feed the output of
pants peek
into something like
--spec-files
can you?
e
Meaning the file descriptors from
<(./pants ...)
can't be fed in to the
--spec-files
file list?
a
like, you can't just do
Copy code
pants peek :: | arbitrary_filter_cmd > targets.json
pants --spec-files=targets.json
I'd need to add in
cat deploy.targets| jq -r '.[] | .["address"]' > specs.txt
or something
w
yea, correct
note that
./pants filter
might be easier than
ppek
+ json filtering in some cases?