mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Updates get_wix.py for newer version of WiX.
This commit is contained in:
parent
fd580cbd17
commit
c79dbc7941
1 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ from subprocess import Popen
|
||||||
from zipfile import ZipFile
|
from zipfile import ZipFile
|
||||||
|
|
||||||
EXTERNALS_DIR = None
|
EXTERNALS_DIR = None
|
||||||
for p in Path(__file__).parents:
|
for p in (Path.cwd() / __file__).parents:
|
||||||
if any(p.glob("PCBuild/*.vcxproj")):
|
if any(p.glob("PCBuild/*.vcxproj")):
|
||||||
EXTERNALS_DIR = p / "externals"
|
EXTERNALS_DIR = p / "externals"
|
||||||
break
|
break
|
||||||
|
@ -22,7 +22,7 @@ if not EXTERNALS_DIR:
|
||||||
print("Cannot find project root")
|
print("Cannot find project root")
|
||||||
sys.exit(1)
|
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_ZIP = EXTERNALS_DIR / "wix.zip"
|
||||||
TARGET_BIN_DIR = EXTERNALS_DIR / "wix"
|
TARGET_BIN_DIR = EXTERNALS_DIR / "wix"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue