Revision 15fef0dc4b5c489a5ffd37061f932f6a98c65419 authored by Denis Barucic on 13 October 2021, 14:04:01 UTC, committed by KristofferC on 18 October 2021, 08:12:32 UTC
The `while` conditions were incorrectly ordered, resulting in
`BoundsError`.

(cherry picked from commit 9739f504e584eefe3cdd0e1f1255893dfe3e39d9)
1 parent 91706ad
Raw File
download.jl
# This file is a part of Julia. License is MIT: https://julialang.org/license

cmd = `$(Base.julia_cmd()) --depwarn=no --startup-file=no download_exec.jl`
if !success(pipeline(cmd; stdout=stdout, stderr=stderr))
    error("download test failed, cmd : $cmd")
end
back to top