]> granicus.if.org Git - python/commitdiff
Updates get_wix.py for newer version of WiX.
authorSteve Dower <steve.dower@microsoft.com>
Tue, 21 Jul 2015 02:52:15 +0000 (19:52 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Tue, 21 Jul 2015 02:52:15 +0000 (19:52 -0700)
Tools/msi/get_wix.py

index c6cf5d92f76a51c65c34c07307061c5e89aa96d5..db141567cbdd54c4af90b63caf5da07e1068b3e2 100644 (file)
@@ -13,7 +13,7 @@ from subprocess import Popen
 from zipfile import ZipFile
 
 EXTERNALS_DIR = None
-for p in Path(__file__).parents:
+for p in (Path.cwd() / __file__).parents:
     if any(p.glob("PCBuild/*.vcxproj")):
         EXTERNALS_DIR = p / "externals"
         break
@@ -22,7 +22,7 @@ if not EXTERNALS_DIR:
     print("Cannot find project root")
     sys.exit(1)
 
-WIX_BINARIES_ZIP = 'http://wixtoolset.org/downloads/v3.10.0.1519/wix310-binaries.zip'
+WIX_BINARIES_ZIP = 'http://wixtoolset.org/downloads/v3.10.0.1823/wix310-binaries.zip'
 TARGET_BIN_ZIP = EXTERNALS_DIR / "wix.zip"
 TARGET_BIN_DIR = EXTERNALS_DIR / "wix"