File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ function download_release(v::VersionNumber)
11
11
julia = " julia-$(x) .$(y) .$(z) -linux-x86_64"
12
12
tarball = " $(julia) .tar.gz"
13
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
- run (` curl -o $(sha256) -L https://julialang-s3.julialang.org/bin/checksums/$(sha256) ` )
14
+ run (` curl -vo $(tarball) -L https://julialang-s3.julialang.org/bin/linux/x64/$(x) .$(y) /$(tarball) ` )
15
+ run (` curl -vo $(sha256) -L https://julialang-s3.julialang.org/bin/checksums/$(sha256) ` )
16
16
run (pipeline (` grep $(tarball) $(sha256) ` , ` sha256sum -c` ))
17
17
mkpath (julia)
18
18
run (` tar -xzf $(tarball) -C $(julia) --strip-components 1` )
@@ -25,7 +25,7 @@ function download_nightly()
25
25
julia_exec, commit = cd (BUILDROOT) do
26
26
julia = " julia-latest-linux64"
27
27
tarball = " $(julia) .tar.gz"
28
- run (` curl -o $(tarball) -L https://julialangnightlies-s3.julialang.org/bin/linux/x64/$(tarball) ` )
28
+ run (` curl -vo $(tarball) -L https://julialangnightlies-s3.julialang.org/bin/linux/x64/$(tarball) ` )
29
29
# find the commit from the extracted folder
30
30
folder = first (readlines (` tar -tf $(tarball) ` ))
31
31
_, commit = split (folder, ' -' ); commit = chop (commit)
You can’t perform that action at this time.
0 commit comments