We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65d9c31 commit 57ae9adCopy full SHA for 57ae9ad
1 file changed
cachebin/recipies.py
@@ -14,10 +14,10 @@ def process_map(map: dict[str, str], key_description: str, key: str) -> str:
14
get_platform_string=lambda system, architecture: process_map(
15
{
16
"darwin-x86_64": "x86_64-macOS",
17
- "darwin-aarch64": "arm64-macOS",
+ "darwin-arm64": "arm64-macOS",
18
"linux-x86_64": "linux-amd64",
19
"linux-aarch64": "linux-arm64",
20
- "windows-x86_64": "windows-x86_64",
+ "windows-amd64": "windows-x86_64",
21
},
22
"platform",
23
f"{system}-{architecture}",
@@ -40,9 +40,9 @@ def process_map(map: dict[str, str], key_description: str, key: str) -> str:
40
41
42
"darwin-x86_64": "macOS-X64",
43
- "darwin-aarch64": "macOS-ARM64",
+ "darwin-arm64": "macOS-ARM64",
44
"linux-x86_64": "Linux-X64",
45
- "windows-x86_64": "Windows-X64",
+ "windows-amd64": "Windows-X64",
46
47
48
0 commit comments