https://github.com/JuliaLang/julia
Raw File
Tip revision: 8608783732ae436327dca7e9b89f9b99772cddbe authored by KristofferC on 20 October 2023, 08:21:12 UTC
bump libcurl to CVE patched version
Tip revision: 8608783
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