banIP: update 1.0.1-2
* correctly parse json objects with hyphens in the autodetection function Signed-off-by: Dirk Brenken <dev@brenken.org>
This commit is contained in:
parent
823633c0e6
commit
3140259fc6
|
@ -6,7 +6,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=banip
|
PKG_NAME:=banip
|
||||||
PKG_VERSION:=1.0.1
|
PKG_VERSION:=1.0.1
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
PKG_LICENSE:=GPL-3.0-or-later
|
PKG_LICENSE:=GPL-3.0-or-later
|
||||||
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
|
PKG_MAINTAINER:=Dirk Brenken <dev@brenken.org>
|
||||||
|
|
||||||
|
|
|
@ -362,7 +362,7 @@ f_getfetch() {
|
||||||
if { [ "${ban_autodetect}" = "1" ] && [ -z "${ban_fetchcmd}" ]; } || [ ! -x "${ban_fetchcmd}" ]; then
|
if { [ "${ban_autodetect}" = "1" ] && [ -z "${ban_fetchcmd}" ]; } || [ ! -x "${ban_fetchcmd}" ]; then
|
||||||
utils="aria2 curl wget-ssl libustream-openssl libustream-wolfssl libustream-mbedtls"
|
utils="aria2 curl wget-ssl libustream-openssl libustream-wolfssl libustream-mbedtls"
|
||||||
for util in ${utils}; do
|
for util in ${utils}; do
|
||||||
if printf "%s" "${ban_packages}" | "${ban_jsoncmd}" -ql1 -e "@.packages.${util}" >/dev/null 2>&1; then
|
if printf "%s" "${ban_packages}" | "${ban_jsoncmd}" -ql1 -e "@.packages[\"${util}\"]" >/dev/null 2>&1; then
|
||||||
case "${util}" in
|
case "${util}" in
|
||||||
"aria2")
|
"aria2")
|
||||||
util="aria2c"
|
util="aria2c"
|
||||||
|
|
Loading…
Reference in New Issue