[Mobies-commit] [commit] r4329 - UDM/trunk/WiX

ksmyth at redhat3.isis.vanderbilt.edu ksmyth at redhat3.isis.vanderbilt.edu
Fri Oct 10 14:08:26 CDT 2014


Author: ksmyth
Date: Fri Oct 10 14:08:26 2014
New Revision: 4329

Log:
Support WiX 3.8

Modified:
   UDM/trunk/WiX/build_msi.py

Modified: UDM/trunk/WiX/build_msi.py
==============================================================================
--- UDM/trunk/WiX/build_msi.py	Fri Oct 10 14:08:22 2014	(r4328)
+++ UDM/trunk/WiX/build_msi.py	Fri Oct 10 14:08:26 2014	(r4329)
@@ -11,7 +11,7 @@
 
 def add_wix_to_path():
     import _winreg
-    for wix_ver in ('3.5', '3.6'):
+    for wix_ver in ('3.5', '3.6', '3.7', '3.8'):
         try:
             with _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, 'SOFTWARE\\Microsoft\\Windows Installer XML\\' + wix_ver) as wixkey:
                 os.environ['PATH'] = _winreg.QueryValueEx(wixkey, 'InstallRoot')[0] + ';' + os.environ['PATH']


More information about the Mobies-commit mailing list