-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Poe uses different CLI args for working directory than Poetry #212
Comments
Hi @jeraymond, Thanks for the suggestion. After thinking it over a bit I think you're right, it makes sense to align with this convention (which various unix utils also follow). I wouldn't want this to be a breaking change, but also wouldn't want the documentation to get noisy, so I'd say the So I'd be happy to receive a PR on this. |
Update Poe to use args -C and --directory to find the path to the directory with pyproject.toml. This better aligns with Poetry (which also uses -C and --directory). Keep the --root argument as a hidden parameter for backwards compatibility.
Update Poe to use args -C and --directory to find the path to the directory with pyproject.toml. This better aligns with Poetry (which also uses -C and --directory). Keep the --root argument as a hidden parameter for backwards compatibility.
Shipped in 0.26.0 🚀 |
Poetry used
-C
and--directory
for the working directory, whereas Poe uses--root
. It'd be nice if these were consistent. Would you be open to adding support for-C
and--directory
in addition to--root
for this? If so, I'm happy to contribute a PR.The text was updated successfully, but these errors were encountered: