You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
When -- is present the rest is taken as arguments. I believe it should be possible to specify the behavior where these "rest" arguments should be distinguishable from other args in order to have "forwarding behavior".
For example cli --parameter 1 --bool arg1 arg2 -- --parameter 2 arg3 arg4 should distinguish arg1 and arg2 from --parameter 2 arg3 arg4.
The text was updated successfully, but these errors were encountered:
Related to this, please support extraArgs and extraFlags properties, which returns all values not defined in static flags and static args. So I can forward extra arguments to other cli tools.
When
--
is present the rest is taken as arguments. I believe it should be possible to specify the behavior where these "rest" arguments should be distinguishable from other args in order to have "forwarding behavior".For example
cli --parameter 1 --bool arg1 arg2 -- --parameter 2 arg3 arg4
should distinguisharg1
andarg2
from--parameter 2 arg3 arg4
.The text was updated successfully, but these errors were encountered: