mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 14:05:41 -07:00
14 lines
311 B
Bash
Executable File
14 lines
311 B
Bash
Executable File
#!/bin/sh -ef
|
|
#
|
|
# kiss-depends - Display a package's dependencies.
|
|
|
|
db_dir=$KISS_ROOT/var/db/kiss/installed/${1-null}
|
|
|
|
# Check if package is installed and exit if it is not.
|
|
[ -d "$db_dir" ] || {
|
|
printf '%s\n' "error: '$1' not installed." >&2
|
|
exit 1
|
|
}
|
|
|
|
[ -f "$db_dir/depends" ] && cat "$db_dir/depends"
|