##// END OF EJS Templates
pyoxidizer: add arch to PyOxidizer MSIs...
Gregory Szorc -
r48699:3962503c stable
parent child Browse files
Show More
@@ -255,7 +255,11 b' def make_msi(manifest):'
255 path = "defaultrc/editor.rc",
255 path = "defaultrc/editor.rc",
256 )
256 )
257
257
258 wix = WiXInstaller("hg", "%s-%s.msi" % (MSI_NAME, VERSION), arch = platform)
258 wix = WiXInstaller(
259 "hg",
260 "%s-%s-%s.msi" % (MSI_NAME, VERSION, platform),
261 arch = platform,
262 )
259
263
260 # Materialize files in the manifest to the install layout.
264 # Materialize files in the manifest to the install layout.
261 wix.add_install_files(manifest)
265 wix.add_install_files(manifest)
General Comments 0
You need to be logged in to leave comments. Login now