File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
crates/tauri-bundler/src/bundle/windows/msi Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ tauri-bundler : minor:feat
3+ ---
4+
5+ Consider extensions that are defined in the wxs template.
Original file line number Diff line number Diff line change @@ -759,8 +759,8 @@ pub fn build_wix_app_installer(
759759
760760 let current_dir = std:: env:: current_dir ( ) ?;
761761 let extension_regex = Regex :: new ( "\" http://schemas.microsoft.com/wix/(\\ w+)\" " ) ?;
762- let input_paths = std :: iter :: once ( output_path . join ( PathBuf :: from ( "main.wxs" ) ) )
763- . chain ( fragment_paths. iter ( ) . map ( |p| current_dir. join ( p) ) ) ;
762+ let input_paths =
763+ std :: iter :: once ( main_wxs_path ) . chain ( fragment_paths. iter ( ) . map ( |p| current_dir. join ( p) ) ) ;
764764
765765 for input_path in input_paths {
766766 let input_content = fs:: read_to_string ( & input_path) ?;
You can’t perform that action at this time.
0 commit comments