Shell Subprocess Does Not Inherit Parent Environment.
MikuAuahDark opened this issue · 1 comments
MikuAuahDark commented
Line 32 in 82e0691
The env=env
completely overwrites the new environment of the shell with new environment variables specified at env
. This means no PATH
either.
What should be done is env={**os.environ, **env}
instead.
josh-perry commented
Should be fixed now.
This:
[hooks]
prebuild = [
"python -c \"print('hi')\""
]
works for me now at the very least.