forked from kiss-community/kiss
kiss: Abort install if file missing in manifest
This commit is contained in:
parent
e67bb8e6b8
commit
80f50ca20b
6
kiss
6
kiss
@ -969,6 +969,12 @@ pkg_install() {
|
||||
[ -f "$tar_dir/$pkg_name/$pkg_db/$pkg_name/manifest" ] ||
|
||||
die "'${tar_file##*/}' is not a valid KISS package"
|
||||
|
||||
# Ensure that the tarball's manifest is correct by checking that
|
||||
# each file and directory inside of it actually exists.
|
||||
while read -r line; do [ -e "$tar_dir/$pkg_name/$line" ] ||
|
||||
die "File $line missing from tarball but mentioned in manifest"
|
||||
done < "$tar_dir/$pkg_name/$pkg_db/$pkg_name/manifest"
|
||||
|
||||
log "$pkg_name" "Checking that all dependencies are installed"; {
|
||||
[ -f "$tar_dir/$pkg_name/$pkg_db/$pkg_name/depends" ] &&
|
||||
[ -z "$KISS_FORCE" ] &&
|
||||
|
Loading…
Reference in New Issue
Block a user