Skip to content
Snippets Groups Projects
Commit 3962503cd1e8 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

pyoxidizer: add arch to PyOxidizer MSIs

This is the proper filename pattern. This filename format
wasn't properly implemented when PyOxidizer took over Python 3
MSI generation in 603efb3845ba.

Differential Revision: https://phab.mercurial-scm.org/D11359
parent 07f3f154e03a
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,11 @@
path = "defaultrc/editor.rc",
)
wix = WiXInstaller("hg", "%s-%s.msi" % (MSI_NAME, VERSION), arch = platform)
wix = WiXInstaller(
"hg",
"%s-%s-%s.msi" % (MSI_NAME, VERSION, platform),
arch = platform,
)
# Materialize files in the manifest to the install layout.
wix.add_install_files(manifest)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment