We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 414a3c1 commit 7b5e389Copy full SHA for 7b5e389
tasks.py
@@ -884,9 +884,9 @@ def package_nodejs(c: Context, architecture=None):
884
_os_platform = _os_platform.replace("-", "_").replace(".", "_").replace(" ", "_")
885
if _os_platform.startswith("macosx") and platform.machine().lower() == "x86_64":
886
_os_platform = _os_platform.replace(
887
- "universal2", platform.machine().lower().lower()
+ "universal2", platform.machine().lower()
888
)
889
- if sysconfig.get_platform().lower() == "linux-x86_64":
+ elif sysconfig.get_platform().lower() == "linux-x86_64":
890
_os_platform = f"manylinux_2_17_{architecture}"
891
elif sysconfig.get_platform().lower() == "linux-aarch64":
892
_os_platform = "manylinux_2_17_aarch64.manylinux2014_aarch64"
0 commit comments