We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 014aeca commit 7aaf27cCopy full SHA for 7aaf27c
.changes/fix-wix-dll-load.md
@@ -0,0 +1,5 @@
1
+---
2
+"tauri-bundler": patch
3
4
+
5
+Fix WiX DLL load on Windows Server.
tooling/bundler/src/bundle/windows/msi/wix.rs
@@ -286,6 +286,7 @@ fn clear_env_for_wix(cmd: &mut Command) {
286
let required_vars: Vec<std::ffi::OsString> =
287
vec!["SYSTEMROOT".into(), "TMP".into(), "TEMP".into()];
288
for (k, v) in std::env::vars_os() {
289
+ let k = k.to_ascii_uppercase();
290
if required_vars.contains(&k) || k.to_string_lossy().starts_with("TAURI") {
291
cmd.env(k, v);
292
}
0 commit comments