We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 741f962 commit 1cc69d9Copy full SHA for 1cc69d9
pdf/make.jl
@@ -12,6 +12,8 @@ function download_release(v::VersionNumber)
12
tarball = "$(julia).tar.gz"
13
sha256 = "julia-$(x).$(y).$(z).sha256"
14
run(`curl -o $(tarball) -L https://julialang-s3.julialang.org/bin/linux/x64/$(x).$(y)/$(tarball)`)
15
+ println("$(sha256):")
16
+ println(String(read(sha256)))
17
run(`curl -o $(sha256) -L https://julialang-s3.julialang.org/bin/checksums/$(sha256)`)
18
run(pipeline(`grep $(tarball) $(sha256)`, `sha256sum -c`))
19
mkpath(julia)
0 commit comments