When running bx exec . -- <command> <args>, bx will greedily parse args instead of ignoring it.
Example:
bx exec . -- python3 --version
this should yield
Python 3.14.4
or similar.
yet it yields
bx 1.6.1
This is the case for all params that bx accepts.
--version, --help, --dry,...
bx should only check args before --
When running
bx exec . -- <command> <args>, bx will greedily parseargsinstead of ignoring it.Example:
bx exec . -- python3 --versionthis should yield
Python 3.14.4or similar.
yet it yields
bx 1.6.1This is the case for all params that bx accepts.
--version, --help, --dry,...
bx should only check args before --