From 4b170454e92cf1f4df40897258271c87d1ef37bb Mon Sep 17 00:00:00 2001 From: "Daniel A. Wozniak" Date: Wed, 31 Jan 2024 12:35:50 -0700 Subject: [PATCH] Force arm64 not aarch64 --- tools/release.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/release.py b/tools/release.py index 425fe45e73db..c800de2ccf96 100644 --- a/tools/release.py +++ b/tools/release.py @@ -137,9 +137,9 @@ def download_onedir_artifact( arch = "arm64" arch = arch.lower() platform = platform.lower() - if platform in ("linux", "macos") and arch not in ("x86_64", "aarch64"): + if platform in ("linux", "macos") and arch not in ("x86_64", "arm64"): ctx.error( - f"The 'arch' value for {platform} must be one of: 'x86_64', 'aarch64', 'arm64'" + f"The 'arch' value for {platform} must be one of: 'x86_64', 'aarch64', 'aarch64'" ) ctx.exit(1) if platform == "windows" and arch not in ("x86", "amd64"):