Commit 4a27e8fc by Mike Lundy Committed by GitHub

add missing env keyword in Env._run (#7626)

The env keyword contains the modified path (that uses get_temp_environ)
so without it, anything using the `input` path here would get the wrong
env.

fixes python-poetry#7623
parent 40061f9d
......@@ -1533,6 +1533,7 @@ class Env:
stderr=stderr,
input=encode(input_),
check=True,
env=env,
**kwargs,
).stdout
elif call:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment