contrib: Remove unneeded checks

This commit is contained in:
Dylan Araps 2020-03-11 20:04:07 +02:00
parent 148232f2d0
commit 4ced0c5c26
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ grep=$(command -v ggrep) || grep='grep'
printf '=> Detected dependencies:\n'
while read -r file || [ "$file" ]; do
while read -r file; do
[ -d "$KISS_ROOT/$file" ] && continue
ldd "$KISS_ROOT/$file" 2>/dev/null | while read -r dep; do

View File

@ -13,7 +13,7 @@ pkg=$1
set --
# Construct the argument list using each file.
while read -r file || [ "$file" ]; do
while read -r file; do
[ -d "$KISS_ROOT/$file" ] || set -- "$@" ".$file"
done < "$KISS_ROOT/var/db/kiss/installed/$pkg/manifest"