summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrepofish2
1 files changed, 1 insertions, 1 deletions
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' \