forked from kiss-community/kiss
kiss: Possible fix for #204
This commit is contained in:
parent
6d205e8095
commit
58846c99b1
4
kiss
4
kiss
@ -113,7 +113,7 @@ sh256() {
|
|||||||
# All utilities must match 'sha256sum' output.
|
# All utilities must match 'sha256sum' output.
|
||||||
#
|
#
|
||||||
# Example: '<checksum> <file>'
|
# Example: '<checksum> <file>'
|
||||||
[ -e "$1" ] || return 0
|
[ -f "$1" ] || return 0
|
||||||
|
|
||||||
hash=$(
|
hash=$(
|
||||||
sha256sum "$1" ||
|
sha256sum "$1" ||
|
||||||
@ -121,7 +121,7 @@ sh256() {
|
|||||||
openssl dgst -sha256 -r "$1" ||
|
openssl dgst -sha256 -r "$1" ||
|
||||||
shasum -a 256 "$1" ||
|
shasum -a 256 "$1" ||
|
||||||
digest -a sha256 "$1"
|
digest -a sha256 "$1"
|
||||||
) 2>/dev/null
|
)
|
||||||
|
|
||||||
printf '%s\n' "${hash%% *}"
|
printf '%s\n' "${hash%% *}"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user