https://github.com/JuliaLang/julia
Raw File
Tip revision: d518061d6b9557efbfc964e25aed7729641cef90 authored by Jameson Nash on 16 May 2022, 08:40:29 UTC
Revert "Hoist object allocation before inner field initialization (#45153)"
Tip revision: d518061
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