mirror of https://github.com/tauri-apps/tauri
parent
1f800e83b6
commit
17a1ad6823
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
"cli.rs": patch
|
||||
---
|
||||
|
||||
Fix `tauri build` failing on Windows if `tauri.conf.json > tauri > bundle > Windows > wix > license` is used.
|
|
@ -407,6 +407,9 @@ pub fn build_wix_app_installer(
|
|||
)?;
|
||||
}
|
||||
|
||||
// ensure that `target/{release, debug}/wix` folder exists
|
||||
std::fs::create_dir_all(settings.project_out_directory().join("wix"))?;
|
||||
|
||||
let output_path = settings.project_out_directory().join("wix").join(arch);
|
||||
|
||||
let mut data = BTreeMap::new();
|
||||
|
|
Loading…
Reference in New Issue