python-poetry / poetry-plugin-shell

MIT License
0 stars 1 forks source link

(🎁) allow `poetry shell` to send additional arguments to the shell #16

Open KotlinIsland opened 2 years ago

KotlinIsland commented 2 years ago

Feature Request

If I want to launch a shell and want to pass arguments to the actual shell it's impossible

> poetry shell -- -NoProfile -NoLogo
...
  NoSuchOptionException

  The "-N" option does not exist.
...
> poetry shell -NoProfile -NoLogo
...
  NoSuchOptionException

  The "-N" option does not exist.
...