mirror of
https://github.com/terrapkg/packages.git
synced 2026-05-31 09:01:55 +00:00
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:
@@ -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
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user