https://github.com/JuliaLang/julia
Raw File
Tip revision: 2947f8c9c6b05c1b03596f64ffc79a2513ea64b4 authored by gbaraldi on 03 January 2024, 18:50:19 UTC
Experiment with always using memcmp
Tip revision: 2947f8c
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