[Request] [+ ] D11359: pyoxidizer: add arch to PyOxidizer MSIs
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Fri Aug 27 05:38:14 UTC 2021
indygreg created this revision.
Herald added a reviewer: hg-reviewers.
Herald added a subscriber: mercurial-patches.
REVISION SUMMARY
This is the proper filename pattern. This filename format
wasn't properly implemented when PyOxidizer took over Python 3
MSI generation in 603efb3845ba <https://phab.mercurial-scm.org/rHG603efb3845ba099c839b3a30651d3f257fb55fe4>.
REPOSITORY
rHG Mercurial
BRANCH
stable
REVISION DETAIL
https://phab.mercurial-scm.org/D11359
AFFECTED FILES
rust/hgcli/pyoxidizer.bzl
CHANGE DETAILS
diff --git a/rust/hgcli/pyoxidizer.bzl b/rust/hgcli/pyoxidizer.bzl
--- a/rust/hgcli/pyoxidizer.bzl
+++ b/rust/hgcli/pyoxidizer.bzl
@@ -242,7 +242,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)
To: indygreg, #hg-reviewers
Cc: mercurial-patches, mercurial-devel
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mercurial-scm.org/pipermail/mercurial-patches/attachments/20210827/4f9a8ffd/attachment.html>
More information about the Mercurial-patches
mailing list