Skip to content

Commit ed7b965

Browse files
committed
Fix platform mapping
1 parent 89d11f0 commit ed7b965

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/make_release.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
CONSTRUCT_VERSION_PATTERN = re.compile(r"version: *(\d+\.\d.+) *\n")
1818
END_HEADER_MAGIC = b"@@END_HEADER@@"
1919
PLATFORM_MAPPING = {
20-
"linux-64": "Linux-aarch64",
21-
"linux-aarch64": "Linux-x86_64",
20+
"linux-64": "Linux-x86_64",
21+
"linux-aarch64": "Linux-aarch64",
2222
"linux-ppc64le": "Linux-ppc64le",
2323
}
2424
logging.basicConfig(level=logging.INFO)

0 commit comments

Comments
 (0)