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

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:56 -08:00
committed by GitHub
parent cb17fcce14
commit 00526afb68
+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