From 3d8badd82230be192b90b50d6550e5f5cea87487 Mon Sep 17 00:00:00 2001 From: "dylan.araps@gmail.com" Date: Tue, 25 Feb 2020 20:56:40 +0000 Subject: contrib: clean up FossilOrigin-Name: 2ea8ee144f0d0cdaaa8c95a7fedf53d7a3fc8e305ed99d51639a7f4450e475ed --- contrib/kiss-depends | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) (limited to 'contrib/kiss-depends') diff --git a/contrib/kiss-depends b/contrib/kiss-depends index 22a1d4e..185a80b 100755 --- a/contrib/kiss-depends +++ b/contrib/kiss-depends @@ -2,12 +2,8 @@ # # kiss-depends - Display a package's dependencies. -db_dir=$KISS_ROOT/var/db/kiss/installed/${1-null} +kiss l "${1:-null}" >/dev/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 -} +db_dir=$KISS_ROOT/var/db/kiss/installed/${1:-null} -[ -f "$db_dir/depends" ] && cat "$db_dir/depends" +cat "$db_dir/depends" 2>/dev/null -- cgit v1.2.3