summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2015-07-21 02:53:26 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2015-07-21 02:53:26 (GMT)
commitc21bfa809588ef142b5838317e8a96f6bdbc732e (patch)
tree2fd70be493ce0e81a9474e96c60990cad646b02d /Tools
parent5f27a5cc434ac6e7c87438e899150ab42f3309cf (diff)
parentc79dbc79417ddbc5ede42db7fd8c241f21c43295 (diff)
downloadcpython-c21bfa809588ef142b5838317e8a96f6bdbc732e.zip
cpython-c21bfa809588ef142b5838317e8a96f6bdbc732e.tar.gz
cpython-c21bfa809588ef142b5838317e8a96f6bdbc732e.tar.bz2
Updates get_wix.py for newer version of WiX.
Diffstat (limited to 'Tools')
-rw-r--r--Tools/msi/get_wix.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/msi/get_wix.py b/Tools/msi/get_wix.py
index c6cf5d9..db14156 100644
--- a/Tools/msi/get_wix.py
+++ b/Tools/msi/get_wix.py
@@ -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"