This commit is contained in:
llama 2025-10-31 21:38:18 +08:00
parent 222a868e69
commit 3edfc0b459
No known key found for this signature in database
GPG key ID: 0B7543854B9413C3

View file

@ -696,6 +696,9 @@ fn uv_command(state: &Paths) -> Result<Command> {
command.env("UV_CACHE_DIR", &state.uv_cache_dir);
}
// have uv use the system certstore instead of webpki-roots'
command.env("UV_NATIVE_TLS", "1");
#[cfg(windows)]
{
use std::os::windows::process::CommandExt;