mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 22:15:36 -07:00
kiss: fix package manager not cleating hash. Closes #248
This commit is contained in:
parent
5f4b22bdae
commit
c423b67e65
9
kiss
9
kiss
@ -200,8 +200,7 @@ sh256() {
|
||||
[ -d "$f" ] || [ ! -e "$f" ] || set -- "$@" "$f"
|
||||
done
|
||||
|
||||
# Only call _sh256 if we have files to operate on.
|
||||
for f do _sh256 "$@"; return 0; done
|
||||
_sh256 "$@"
|
||||
}
|
||||
|
||||
_sh256() {
|
||||
@ -214,6 +213,9 @@ _sh256() {
|
||||
# Example: '<checksum> <file>'
|
||||
unset hash
|
||||
|
||||
# Skip generation if no arguments.
|
||||
! equ "$#" 0 || return 0
|
||||
|
||||
# Set the arguments based on found sha256 utility.
|
||||
case ${cmd_sha##*/} in
|
||||
openssl) set -- dgst -sha256 -r "$@" ;;
|
||||
@ -1022,8 +1024,7 @@ pkg_checksums() {
|
||||
esac
|
||||
done < "$repo_dir/sources"
|
||||
|
||||
# Only run _sh256 if we have elements.
|
||||
for f do _sh256 "$@"; return 0; done
|
||||
_sh256 "$@"
|
||||
}
|
||||
|
||||
pkg_verify() {
|
||||
|
Loading…
Reference in New Issue
Block a user