From 766e5d7089a63119ed337601109b63f7e6267035 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Fri, 17 Apr 2020 12:44:15 +0300 Subject: [PATCH] kiss-repodepends: don't output the dependencies of installed package kiss-repodepends did not honour the user's KISS_PATH and outputted the last path it found. If the user has the package installed, the last path will always be the system database, which defeats the whole purpose of "repodepends". This patch will use the first path it finds, which will be the user's preferred repository in the KISS_PATH. Signed-off-by: Dylan Araps --- contrib/kiss-repodepends | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/contrib/kiss-repodepends b/contrib/kiss-repodepends index f56c2cb..fded3b2 100755 --- a/contrib/kiss-repodepends +++ b/contrib/kiss-repodepends @@ -2,7 +2,4 @@ # # kiss-repodepends -# Disable this warning as the output -# from 'kiss s' is intended to be split. -# shellcheck disable=2046 -cat $(kiss s "$1")/depends 2>/dev/null +cat "$(kiss s "$1" | sed 1q)/depends" 2>/dev/null