fix(zig-master,zig-master-bootstrap): Fix randomization (#7781)

A `for` loop is not supposed to SET a variable but whatever.

Signed-off-by: Gilver <rockgrub@disroot.org>
This commit is contained in:
Gilver
2025-11-29 09:34:34 -06:00
committed by GitHub
parent 9738e02139
commit 4b3ce85752
+2 -2
View File
@@ -4,8 +4,8 @@ version=0.16.0-dev.1484+d0ba6642b
mirrors=()
for mirror in $(curl -s https://ziglang.org/download/community-mirrors.txt); do
mirrors+=($mirror)
for m in $(curl -s https://ziglang.org/download/community-mirrors.txt); do
mirrors+=($m)
done