How to forward cli arguments to tasks? #4181
-
Is there a way to just pass on command line arguments to a task or is it always need to declare those explicitly via |
Beta Was this translation helpful? Give feedback.
Answered by
lucascolley
Jul 23, 2025
Replies: 1 comment 3 replies
-
by default, any extra input (not captured by args) to a task which defines |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
adonath
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
by default, any extra input (not captured by args) to a task which defines
cmd
will be appended to thecmd
. Any extra input to an alias task which does not define acmd
will be discarded.