Closed jaraco closed 11 months ago
I notice the [-]
in the usage. However, injecting a -
ahead of the command seems to have no effect. I did find, by checking the argparse docs, that injecting --
ahead of the command args does force them to be passed through to the subprocess command.
That option isn't available on env
for macOS, but I do see it on Linux, where:
A mere - implies -i.
Probably cmdix should mimic that behavior for compatibility.
Consider this invocation:
or
The arg parsing is failing because the
-m
and--help
are being parsed forenv
.env
needs to ignore any options after the first argument is encountered.