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 37d39d7 commit 5221bafCopy full SHA for 5221baf
tasks.py
@@ -870,9 +870,9 @@ def package_nodejs(c: Context, architecture=None):
870
_os_platform = _os_platform.replace(
871
"universal2", platform.machine().lower().lower()
872
)
873
- if _os_platform == "linux-x86_64":
+ if sysconfig.get_platform().lower() == "linux-x86_64":
874
_os_platform = f"manylinux_2_17_{architecture}"
875
- elif _os_platform == "linux-aarch64":
+ elif sysconfig.get_platform().lower() == "linux-aarch64":
876
_os_platform = "manylinux_2_17_aarch64.manylinux2014_aarch64"
877
dist_dir = BROWSER_BATTERIES_DIR.joinpath("dist")
878
wheel_pkg = dist_dir.glob("*.whl")
0 commit comments