https://github.com/JuliaLang/julia
Raw File
Tip revision: d223d61f4b91e8f963cf40e74ed333a55e81dc03 authored by Shuhei Kadowaki on 17 January 2022, 17:51:59 UTC
lattice overhaul step 3: simplify `tmerge`
Tip revision: d223d61
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