add proxy_envs to uv pip compile

This commit is contained in:
Ruben Fiszel
2024-12-20 21:58:16 +01:00
parent b817d597f1
commit e5a6d68ce3

View File

@@ -332,6 +332,7 @@ pub async fn uv_pip_compile(
.env_clear()
.env("HOME", HOME_ENV.to_string())
.env("PATH", PATH_ENV.to_string())
.envs(PROXY_ENVS.clone())
.args(&args)
.stdout(Stdio::piped())
.stderr(Stdio::piped());