Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use command instead of test #159

Merged
merged 1 commit into from
Jun 26, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions hack/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ checksums_filename="releases/v${version}_checksums.txt"

# Download binary and checksums files.
(
if [ -x "$(which curl 2>/dev/null)" ]; then
if command -v curl >/dev/null 2>&1; then
curl -sSL "${binary_url}" -o "${binary_filename}"
curl -sSL "${checksum_url}" -o "${checksums_filename}"
elif [ -x "$(which wget 2>/dev/null)" ]; then
elif command -v wget >/dev/null 2>&1; then
wget -q "${binary_url}" -O "${binary_filename}"
wget -q "${checksum_url}" -O "${checksums_filename}"
else
Expand All @@ -70,10 +70,10 @@ checksums_filename="releases/v${version}_checksums.txt"

# Verify checksum.
(
if [ -x "$(which sha256sum 2>/dev/null)" ]; then
if command -v sha256sum >/dev/null 2>&1; then
checksum=$(sha256sum ${binary_filename} | awk '{ print $1 }')
validate_checksum ${checksum} ${checksums_filename}
elif [ -x "$(which openssl 2>/dev/null)" ]; then
elif command -v openssl >/dev/null 2>&1; then
checksum=$(openssl dgst -sha256 ${binary_filename} | awk '{ print $2 }')
validate_checksum ${checksum} ${checksums_filename}
else
Expand Down