https://github.com/JuliaLang/julia
Raw File
Tip revision: 4ba81cb96264e4ae9202aad108bdbc86581a9d51 authored by Gabriel Baraldi on 26 October 2023, 15:04:29 UTC
Require patchelf to install llvm tools
Tip revision: 4ba81cb
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