kiss-owns: Allow all path types as input

This commit is contained in:
Dylan Araps 2020-11-06 08:49:56 +02:00
parent e98d159366
commit 3237598dc3
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 18 additions and 6 deletions

View File

@ -1,19 +1,31 @@
#!/bin/sh -e #!/bin/sh -e
# Check which package owns a file # Check which package owns a file
# Strip 'KISS_ROOT' from the file path if passed and # Follow symlinks to any paths.
# follow symlinks. case $1 in
file=$(readlink -f "$KISS_ROOT/${1##$KISS_ROOT}") /*)
cd -P "$KISS_ROOT/${1%/*}"
;;
[ -f "$file" ] || { */*)
cd -P "${1%/*}"
;;
*)
cd -P .
;;
esac
[ -f "$PWD/${1##*/}" ] || {
printf 'usage: kiss-owns [/path/to/file]\n' >&2 printf 'usage: kiss-owns [/path/to/file]\n' >&2
exit 1 exit 1
} }
# Print the full path to the manifest file which contains # Print the full path to the manifest file which contains
# the match to our search. # the match to our search.
pkg_owns=$(grep -lFx "${file##$KISS_ROOT}" \ pkg_owns=$(grep -lFx \
"$KISS_ROOT/var/db/kiss/installed/"*/manifest) "$PWD/${1##*/}" \
"$KISS_ROOT/var/db/kiss/installed/"*/manifest)
# Extract the package name from the path above. # Extract the package name from the path above.