Add extra space between shasum args (#49)

This commit is contained in:
Alex Rudd 2021-05-12 18:46:48 +01:00 committed by GitHub
parent 9480360cc6
commit 1f388f1b6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ check_shasum() {
elif command -v shasum >/dev/null 2>&1; then elif command -v shasum >/dev/null 2>&1; then
shasum \ shasum \
-a 256 \ -a 256 \
-c <<<"$authentic_checksum $archive_file_name" -c <<<"$authentic_checksum $archive_file_name"
else else
fail "sha256sum or shasum is not available for use" fail "sha256sum or shasum is not available for use"
fi fi