From 7e4f119498b01e5d6497aa6b0cab840845fe63e2 Mon Sep 17 00:00:00 2001 From: Seppia Date: Sun, 3 Jun 2018 22:19:11 +0200 Subject: Check installed fix Fixes breakage of the detection of already installed packages due to description message addition in list function. --- repofish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repofish b/repofish index ec1b212..97ac38a 100755 --- a/repofish +++ b/repofish @@ -165,7 +165,7 @@ update_repo() { search_packages() { declare -a key=("${!1}") - LIST_INST=$($0 list | tr '\n' '|') + LIST_INST=$($0 list | tail -n +2 | tr '\n' '|') CURL_JSN=$(curl -s $(echo ${URL_PREFIX}${SEARCH_STR}"${key[@]}" | sed -e 's/ /+/g')) OUT_STR=$(jq -r '.results | .[] | [.Name, .Version], .Description' <<< ${CURL_JSN}) SEARCH_OUT=$(sed -e 's/\\//g' -e 's/\[/\\033\[1\;36m\[/g' -e 's/",/\\033\[1\;33m", \[\\033\[1\;32m/g' \ -- cgit v1.2.3