commit cf4da3a9ca9eddc075de83322c55778a08e63519
parent 21d2d68dfbf3c09d91efd8b166a19bda3b3e4e6d
Author: Cem Keylan <cem@ckyln.com>
Date: Thu, 30 Apr 2020 11:05:14 +0300
kiss: lazy checking
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kiss b/kiss
@@ -989,7 +989,7 @@ pkg_install() {
[ -z "$KISS_FORCE" ] && log "$pkg_name" "Checking package manifest" &&
while read -r line; do
# Skip symbolic links
- [ -h "$tar_dir/$pkg_name/$line" ] && continue
+ [ -h "$tar_dir/$pkg_name/$line" ] ||
[ -e "$tar_dir/$pkg_name/$line" ] || {
log "File $line missing from tarball but mentioned in manifest" "" "!>"
TARBALL_FAIL=1