https://github.com/JuliaLang/julia
Raw File
Tip revision: 1b93d53fc4bb59350ada898038ed4de2994cce33 authored by Alex Arslan on 14 July 2021, 15:36:41 UTC
Set VERSION to 1.6.2 (#41577)
Tip revision: 1b93d53
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