貌似全局代理也没用,最好的方式是把这个 wix 包在浏览器下载完,然后放在 Tauri 需要的地方,让它直接使用,避免再在命令行里下载。
Tauri 的判断代码在这里:https://github.com/tauri-apps/tauri/blob/dev/tooling/bundler/src/bundle/windows/msi.rs#L29
/// Runs all of the commands to build the MSI installer.
/// Returns a vector of PathBuf that shows where the MSI was created.
pub fn bundle_project(settings: &Settings, updater: bool) -> crate::Result<Vec<PathBuf>> {
let mut wix_path = dirs_next::cache_dir().unwrap();
wix_path.push("tauri/WixTools");
if !wix_path.exists() {
wix::get_and_extract_wix(&wix_path)?;
} else if WIX_REQUIRED_FILES
.iter()
.any(|p| !wix_path.join(p).exists())
{
warn!("WixTools directory is missing some files. Recreating it.");
std::fs::remove_dir_all(&wix_path)?;
wix::get_and_extract_wix(&wix_path)?;
}
wix::build_wix_app_installer(settings, &wix_path, updater)
}
dirs_next::cache_dir() 的结果如下:所以直接把 Wix 下载完后,在 C:\Users\xxxxxxxx\AppData\Loca 中,创建 tauri/WixTools 文件夹,然后把内容解压到里面就可以了。
通过浏览器下载的文件(wix文件的地址可以在错误log哪里找到):例如:
windows平台:在C:\Users\Alice\AppData\Local中,创建 tauri/WixTools 文件夹,然后把内容解压到里面就可以了。