From 3dee8f3008bc951e1d464f0c93d991df2776c9bb Mon Sep 17 00:00:00 2001 From: mlehurau Date: Tue, 31 Jan 2023 14:30:13 -0500 Subject: [PATCH 1/2] Fix typo for msi eula rtf --- tugger-wix/src/simple_msi_builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tugger-wix/src/simple_msi_builder.rs b/tugger-wix/src/simple_msi_builder.rs index 124246515..c7539b541 100644 --- a/tugger-wix/src/simple_msi_builder.rs +++ b/tugger-wix/src/simple_msi_builder.rs @@ -518,7 +518,7 @@ impl WiXSimpleMsiBuilder { if let Some(eula_path) = &self.eula_rtf { writer.write( XmlEvent::start_element("WixVariable") - .attr("Id", "WixUILicenseRTF") + .attr("Id", "WixUILicenseRtf") .attr("Value", &eula_path.display().to_string()), )?; writer.write(XmlEvent::end_element().name("WixVariable"))?; From 99a8d6253f20b47903007a24367d3de58174ba3f Mon Sep 17 00:00:00 2001 From: 6xzo <36180574+6xzo@users.noreply.github.com> Date: Wed, 15 Feb 2023 10:59:51 -0500 Subject: [PATCH 2/2] Fix typo for msi ui banner bmp --- tugger-wix/src/simple_msi_builder.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tugger-wix/src/simple_msi_builder.rs b/tugger-wix/src/simple_msi_builder.rs index c7539b541..201566e55 100644 --- a/tugger-wix/src/simple_msi_builder.rs +++ b/tugger-wix/src/simple_msi_builder.rs @@ -527,7 +527,7 @@ impl WiXSimpleMsiBuilder { if let Some(banner_path) = &self.banner_bmp { writer.write( XmlEvent::start_element("WixVariable") - .attr("Id", "WixUIBannerBMP") + .attr("Id", "WixUIBannerBmp") .attr("Value", &banner_path.display().to_string()), )?; writer.write(XmlEvent::end_element().name("WixVariable"))?;