pfirsich/makelove

Shell Subprocess Does Not Inherit Parent Environment.

MikuAuahDark opened this issue · 1 comments

subprocess.run(command_replaced, shell=True, check=True, env=env)

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.

Should be fixed now.

This:

[hooks]
prebuild = [
    "python -c \"print('hi')\""
]

works for me now at the very least.