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 48c90b6 commit 9c33253Copy full SHA for 9c33253
in
@@ -45,8 +45,10 @@ if [[ -z ${tarball_url} ]]; then
45
fi
46
47
echo >&2 "Downloading ${tarball_url}"
48
-curl -O "${tarball_url}"
49
-curl -o "sha256" "${tarball_url}.sha256"
+curl --silent --fail --show-error --location --remote-name \
+ --url "${tarball_url}"
50
+curl --silent --fail --show-error --location --output "sha256" \
51
+ --url "${tarball_url}.sha256"
52
sha256=$(< sha256)
53
sha256sum --check <<< "${sha256} openssl-${version}.tar.gz"
54
0 commit comments