https://github.com/JuliaLang/julia
Raw File
Tip revision: 028992f3adaeaafedeb715272c1216e9dfc79ab3 authored by Viral B. Shah on 18 February 2024, 16:22:46 UTC
Remove OpenLibm and leverage native Julia implementations
Tip revision: 028992f
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