kiss: Make owns follow symlinks.

This commit is contained in:
Dylan Araps 2019-07-31 17:57:14 +03:00
parent 68cf91a9d2
commit 5604ab3f6b
1 changed files with 3 additions and 3 deletions

6
kiss
View File

@ -960,12 +960,12 @@ args() {
for file; do
# Strip 'KISS_ROOT' from the file path if passed and
# follow symlinks.
file=$(realpath "$KISS_ROOT/${file##$KISS_ROOT}")
file_true=$(readlink -f "$KISS_ROOT/${file##$KISS_ROOT}")
[ -f "$file" ] || die "File '$file' doesn't exist."
[ -f "$file_true" ] || die "File '$file' doesn't exist."
set +f
pkg_owns=$(grep -lFx "${file##$KISS_ROOT}" \
pkg_owns=$(grep -lFx "${file_true##$KISS_ROOT}" \
"$KISS_ROOT/$pkg_db/"*/manifest)
set -f