forked from kiss-community/kiss
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() {
|
pkg_verify() {
|
||||||
# Verify all package checksums. This is achieved by generating a new set
|
# Verify all package checksums. This is achieved by generating a new set
|
||||||
# of checksums and then comparing those with the old 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
|
for pkg do
|
||||||
repo_dir=$(pkg_find "$pkg")
|
repo_dir=$(pkg_find "$pkg")
|
||||||
|
Loading…
Reference in New Issue
Block a user