diff options
Diffstat (limited to 'archweb.inc.sh')
-rw-r--r-- | archweb.inc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archweb.inc.sh b/archweb.inc.sh index dbe36a5..6075c41 100644 --- a/archweb.inc.sh +++ b/archweb.inc.sh @@ -1,4 +1,4 @@ archweb_get_pkgbase() { - curl -s "https://www.archlinux.org/packages/search/json/?q=$1" | + curl -Gs "https://www.archlinux.org/packages/search/json/" --data-urlencode "q=$1" | jq -er --arg pkgname "$1" 'limit(1; .results[] | select(.pkgname == $pkgname).pkgbase)' } |