You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Commit 4543837 breaks the dotenv run command on Windows. If you enter the statement (for example) dotenv run -- python in Powershell there is no output. Subsequently entering $? reveals the last statement failed.
If I run python -c "import os; os.execvpe('python', ['python'], {})" I get the output FileNotFoundError: [Errno 2] No such file or directory: 'C:\\bin\\python'. I imagine this same error is occurring with the dotenv run command but the error message is getting lost.
The text was updated successfully, but these errors were encountered:
MrSnapperVibes
changed the title
Unreleased changes do not work on Windows
Unreleased `dotenv run changes do not work on Windows
Oct 18, 2024
MrSnapperVibes
changed the title
Unreleased `dotenv run changes do not work on Windows
Unreleased dotenv run changes do not work on Windows
Oct 18, 2024
Commit 4543837 breaks the
dotenv run
command on Windows. If you enter the statement (for example)dotenv run -- python
in Powershell there is no output. Subsequently entering$?
reveals the last statement failed.If I run
python -c "import os; os.execvpe('python', ['python'], {})"
I get the outputFileNotFoundError: [Errno 2] No such file or directory: 'C:\\bin\\python'
. I imagine this same error is occurring with thedotenv run
command but the error message is getting lost.The text was updated successfully, but these errors were encountered: