From e8a348419f04585a5da37c8fd78d13b5581d0a3c Mon Sep 17 00:00:00 2001 From: Micah Lee Date: Tue, 22 Jun 2021 12:03:29 -0700 Subject: [PATCH] Must remove InstallExecuteSequence for Wix package to build --- install/windows/build-wxs.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/install/windows/build-wxs.py b/install/windows/build-wxs.py index 8c0d410..43840e7 100644 --- a/install/windows/build-wxs.py +++ b/install/windows/build-wxs.py @@ -213,14 +213,6 @@ def main(): build_dir_xml(product_el, data) component_ids = build_components_xml(product_el, data) - install_exec_seq_el = ET.SubElement( - product_el, - "InstallExecuteSequence", - ) - ET.SubElement( - install_exec_seq_el, "RemoveExistingProducts", After="InstallValidate" - ) - feature_el = ET.SubElement(product_el, "Feature", Id="DefaultFeature", Level="1") for component_id in component_ids: ET.SubElement(feature_el, "ComponentRef", Id=component_id)