Skip to content

Commit

Permalink
fix(bundler): ensure that there are no duplicate extension arguments …
Browse files Browse the repository at this point in the history
…during bundling on Windows (fix tauri-apps#6103)
  • Loading branch information
biaocy committed May 12, 2023
1 parent 5949361 commit 450be94
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tooling/bundler/src/bundle/windows/msi/wix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -356,10 +356,7 @@ fn run_light(
) -> crate::Result<()> {
let light_exe = wix_toolset_path.join("light.exe");

let mut args: Vec<String> = vec![
"-o".to_string(),
display_path(output_path),
];
let mut args: Vec<String> = vec!["-o".to_string(), display_path(output_path)];

args.extend(arguments);

Expand Down

0 comments on commit 450be94

Please sign in to comment.