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.
target/release/wix
1 parent 1f800e8 commit 17a1ad6Copy full SHA for 17a1ad6
.changes/cli.rs-wix-license.md
@@ -0,0 +1,5 @@
1
+---
2
+"cli.rs": patch
3
4
+
5
+Fix `tauri build` failing on Windows if `tauri.conf.json > tauri > bundle > Windows > wix > license` is used.
tooling/bundler/src/bundle/windows/msi/wix.rs
@@ -407,6 +407,9 @@ pub fn build_wix_app_installer(
407
)?;
408
}
409
410
+ // ensure that `target/{release, debug}/wix` folder exists
411
+ std::fs::create_dir_all(settings.project_out_directory().join("wix"))?;
412
413
let output_path = settings.project_out_directory().join("wix").join(arch);
414
415
let mut data = BTreeMap::new();
0 commit comments