mirror of
https://github.com/ankitects/anki.git
synced 2025-11-06 12:47:11 -05:00
fix: make uv use system certstore (#4386)
This commit is contained in:
parent
23263caea2
commit
a05c90cbce
1 changed files with 3 additions and 0 deletions
|
|
@ -1015,6 +1015,9 @@ fn uv_command(state: &State) -> Result<Command> {
|
|||
.env("UV_DEFAULT_INDEX", &pypi_mirror);
|
||||
}
|
||||
|
||||
// have uv use the system certstore instead of webpki-roots'
|
||||
command.env("UV_NATIVE_TLS", "1");
|
||||
|
||||
Ok(command)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue