mirror of
https://codeberg.org/kiss-community/kiss
synced 2025-01-26 09:34:59 -07:00
kiss: Allow 'SKIP' to be used to disable checksums for a source. Closes #200
This commit is contained in:
parent
b1302664d5
commit
a616b61cc6
4
kiss
4
kiss
@ -763,7 +763,9 @@ pkg_checksums() {
|
||||
pkg_verify() {
|
||||
# Verify all package checksums. This is achieved by generating a new set
|
||||
# of checksums and then comparing those with the old set.
|
||||
verify_cmd="NR==FNR{a[\$1];next}/^git .*/{next}!((\$1)in a){exit 1}"
|
||||
verify_cmd="
|
||||
NR==FNR{a[\$1];next}/^git .*|^SKIP$/{next}!((\$1)in a){exit 1}
|
||||
"
|
||||
|
||||
for pkg do
|
||||
repo_dir=$(pkg_find "$pkg")
|
||||
|
Loading…
Reference in New Issue
Block a user