https://github.com/JuliaLang/julia
Raw File
Tip revision: 63ac63e4457267f77cf26d5945cc893c2a152c2c authored by Alex Arslan on 21 August 2021, 17:26:14 UTC
WIP: Use LLVM libunwind on FreeBSD
Tip revision: 63ac63e
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