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

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


(cherry picked from commit 4b3ce85752)

Signed-off-by: Gilver <rockgrub@disroot.org>
Co-authored-by: Gilver <rockgrub@disroot.org>
This commit is contained in:
Raboneko
2025-11-29 07:36:39 -08:00
committed by GitHub
parent f4ab98d98b
commit b40e71021d
+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