mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 17:50:20 +00:00
Force arm64 not aarch64
This commit is contained in:
parent
8c5b8518df
commit
4b170454e9
1 changed files with 2 additions and 2 deletions
|
@ -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"):
|
||||
|
|
Loading…
Add table
Reference in a new issue