Skip to content

Commit c80b20e

Browse files
committed
update order of prebuilt binary artifacts in install tool
1 parent 623e208 commit c80b20e

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

assets/install.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,16 +166,21 @@ async function update() {
166166

167167
const { date, version, ...artifacts } = json;
168168

169+
// Matches https://ziglang.org/download/
169170
const targets = [
170171
"windows-x86_64",
171172
"windows-aarch64",
172173
"windows-x86",
173-
"macos-aarch64",
174174
"macos-x86_64",
175+
"macos-aarch64",
175176
"linux-x86_64",
176-
"linux-x86",
177177
"linux-aarch64",
178-
"linux-arm",
178+
"linux-armv7a",
179+
"linux-armv",
180+
"linux-riscv64",
181+
"linux-powerpc64le",
182+
"linux-x86",
183+
"linux-loongarch64",
179184
"wasi-wasm32",
180185
];
181186

0 commit comments

Comments
 (0)