We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7f3326 commit 1a71314Copy full SHA for 1a71314
1 file changed
tasks.py
@@ -874,9 +874,9 @@ def package_nodejs(c: Context, architecture=None):
874
_os_platform = _os_platform.replace("-", "_").replace(".", "_").replace(" ", "_")
875
if _os_platform.startswith("macosx") and platform.machine().lower() == "x86_64":
876
_os_platform = _os_platform.replace(
877
- "universal2", platform.machine().lower().lower()
+ "universal2", platform.machine().lower()
878
)
879
- if sysconfig.get_platform().lower() == "linux-x86_64":
+ elif sysconfig.get_platform().lower() == "linux-x86_64":
880
_os_platform = f"manylinux_2_17_{architecture}"
881
elif sysconfig.get_platform().lower() == "linux-aarch64":
882
_os_platform = "manylinux_2_17_aarch64.manylinux2014_aarch64"
0 commit comments