From 3edfc0b45934db23c6752a550d393d385de18166 Mon Sep 17 00:00:00 2001 From: llama Date: Fri, 31 Oct 2025 21:38:18 +0800 Subject: [PATCH] port a05c90cbc --- qt/launcher-gui/src-tauri/src/uv.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qt/launcher-gui/src-tauri/src/uv.rs b/qt/launcher-gui/src-tauri/src/uv.rs index 4f5d578aa..9bbb474b0 100644 --- a/qt/launcher-gui/src-tauri/src/uv.rs +++ b/qt/launcher-gui/src-tauri/src/uv.rs @@ -696,6 +696,9 @@ fn uv_command(state: &Paths) -> Result { 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;