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 77d610e commit 483a497Copy full SHA for 483a497
tasks.py
@@ -866,9 +866,9 @@ def package_nodejs(c: Context, architecture=None):
866
_os_platform = _os_platform.replace("-", "_").replace(".", "_").replace(" ", "_")
867
if _os_platform.startswith("macosx") and platform.machine().lower() == "x86_64":
868
_os_platform = _os_platform.replace(
869
- "universal2", platform.machine().lower().lower()
+ "universal2", platform.machine().lower()
870
)
871
- if sysconfig.get_platform().lower() == "linux-x86_64":
+ elif sysconfig.get_platform().lower() == "linux-x86_64":
872
_os_platform = f"manylinux_2_17_{architecture}"
873
elif sysconfig.get_platform().lower() == "linux-aarch64":
874
_os_platform = "manylinux_2_17_aarch64.manylinux2014_aarch64"
0 commit comments