https://github.com/JuliaLang/julia
Raw File
Tip revision: 65ce61191cb31ec00ece9d2ae23c1f664cf40455 authored by KristofferC on 13 May 2022, 07:06:40 UTC
fix test
Tip revision: 65ce611
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