kiss/contrib/kiss-depends

18 lines
420 B
Plaintext
Raw Normal View History

2019-10-30 04:51:48 -06:00
#!/bin/sh -ef
2020-05-01 00:07:20 -06:00
# Display a package's dependencies
2019-10-30 04:51:48 -06:00
# CRUX style usage using the current directory as the name of the package to be
# operated on.
[ "$1" ] || {
set -- "${PWD##*/}"
}
# Ignore shellcheck as we want the warning's behavior.
# shellcheck disable=2015
kiss l "${1:-null}" >/dev/null || {
printf 'usage: kiss-depends [pkg]\n'
exit 1
}
2019-10-30 04:51:48 -06:00
cat "$KISS_ROOT/var/db/kiss/installed/$1/depends" 2>/dev/null