Skip to content

Commit 1cc69d9

Browse files
committed
Print out the SHA sum file contents
1 parent 741f962 commit 1cc69d9

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pdf/make.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ function download_release(v::VersionNumber)
1212
tarball = "$(julia).tar.gz"
1313
sha256 = "julia-$(x).$(y).$(z).sha256"
1414
run(`curl -o $(tarball) -L https://julialang-s3.julialang.org/bin/linux/x64/$(x).$(y)/$(tarball)`)
15+
println("$(sha256):")
16+
println(String(read(sha256)))
1517
run(`curl -o $(sha256) -L https://julialang-s3.julialang.org/bin/checksums/$(sha256)`)
1618
run(pipeline(`grep $(tarball) $(sha256)`, `sha256sum -c`))
1719
mkpath(julia)

0 commit comments

Comments
 (0)