What's the proper way of running all scripts with ...
# general
m
What's the proper way of running all scripts with the name
deploy
that changed since
origin/main
? I tried
./pants run --changed-since=origin/main --changed-dependees=transitive ":deploy"
but that gave me
Copy code
You used `--changed-since` at the same time as using target arguments. Please use only one.
1
h
Something like
./pants --changed-since=... filter --address-regex='blah blah'
Note that I'm using
filter
because you can only run one thing at a time. So you could save the output and then invoke Pants sequentially
m
Ah, that works. Thanks!
❤️ 1