From: Florian Eckert Date: Wed, 25 Sep 2024 14:35:57 +0000 (+0200) Subject: ddns-scripts: fix update_porkbun_v3 shell syntax X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d9cc0e1cd42833f1e6adee7d7abf9b4101b9c1fb;p=openwrt-packages.git ddns-scripts: fix update_porkbun_v3 shell syntax The closing bracket was forgotten in a function. Signed-off-by: Florian Eckert --- diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index 103130558..0561f9958 100644 --- a/net/ddns-scripts/Makefile +++ b/net/ddns-scripts/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=ddns-scripts PKG_VERSION:=2.8.2 -PKG_RELEASE:=47 +PKG_RELEASE:=48 PKG_LICENSE:=GPL-2.0 diff --git a/net/ddns-scripts/files/usr/lib/ddns/update_porkbun_v3.sh b/net/ddns-scripts/files/usr/lib/ddns/update_porkbun_v3.sh index 037a4aa6e..f1824d9d5 100644 --- a/net/ddns-scripts/files/usr/lib/ddns/update_porkbun_v3.sh +++ b/net/ddns-scripts/files/usr/lib/ddns/update_porkbun_v3.sh @@ -62,7 +62,7 @@ function api_call() { response=$($CURL --data "$2" "$url") write_log 7 "API response JSON payload: $response" echo "$response" - +} # Check Porkbun API response status function json_check_status() {