I'd kinda hate having to document quirks like that in the docs for a CLI tool... E.g. "don't put an argument with quoted spaces after --foo" is an unfortunate thing to need to add to docs...
I'd kinda hate having to document quirks like that in the docs for a CLI tool... E.g. "don't put an argument with quoted spaces after --foo" is an unfortunate thing to need to add to docs...
['bar', 'baz', '--some-other-arg="foo bar"']
for the first argument order and
['bar', 'baz']
as expected for the second
Using a non-quoted argument or leaving out the = sign works and produces the latter expected result.
['bar', 'baz', '--some-other-arg="foo bar"']
for the first argument order and
['bar', 'baz']
as expected for the second
Using a non-quoted argument or leaving out the = sign works and produces the latter expected result.