From d9cc0e1cd42833f1e6adee7d7abf9b4101b9c1fb Mon Sep 17 00:00:00 2001 From: Florian Eckert Date: Wed, 25 Sep 2024 16:35:57 +0200 Subject: [PATCH] ddns-scripts: fix update_porkbun_v3 shell syntax The closing bracket was forgotten in a function. Signed-off-by: Florian Eckert --- net/ddns-scripts/Makefile | 2 +- net/ddns-scripts/files/usr/lib/ddns/update_porkbun_v3.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/ddns-scripts/Makefile b/net/ddns-scripts/Makefile index 103130558d..0561f99584 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 037a4aa6e7..f1824d9d5b 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() {