https://github.com/JuliaLang/julia
Raw File
Tip revision: 168b39f76dcced569338606163e947bec0e67fb9 authored by Daniel Karrasch on 03 October 2020, 09:09:10 UTC
cat with UniformScaling & numbers
Tip revision: 168b39f
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