https://github.com/JuliaLang/julia
Raw File
Tip revision: c0c854e68f3977a7fcd18bdbe798063ec60f13ee authored by Nathan Daly on 04 February 2022, 15:39:21 UTC
Fix pointer casting warnings by adding the appropriate casts
Tip revision: c0c854e
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