From 4fe7f7f2732fad5123834cb6043d087e0f04d6a1 Mon Sep 17 00:00:00 2001 From: bcsanford Date: Mon, 26 Dec 2022 21:52:47 -0500 Subject: [PATCH] Allow DNSAPI Folder to be defined using FullPath --- acme.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/acme.sh b/acme.sh index d6d8e48c..4775531a 100755 --- a/acme.sh +++ b/acme.sh @@ -3897,6 +3897,8 @@ _findHook() { d_api="$LE_WORKING_DIR/$_hookcat/$_hookname" elif [ -f "$LE_WORKING_DIR/$_hookcat/$_hookname.sh" ]; then d_api="$LE_WORKING_DIR/$_hookcat/$_hookname.sh" + elif [ -f "$_hookcat/$_hookname.sh" ]; then + d_api="$_hookcat/$_hookname.sh" fi printf "%s" "$d_api"