mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
find hook file in current dir first
This commit is contained in:
parent
21f16b50f3
commit
20a6ab3d1a
8
acme.sh
8
acme.sh
@ -2297,8 +2297,12 @@ _findHook() {
|
||||
_hookdomain="$1"
|
||||
_hookcat="$2"
|
||||
_hookname="$3"
|
||||
|
||||
if [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname" ] ; then
|
||||
|
||||
if [ -f "$_SCRIPT_HOME/$_hookdomain/$_hookname" ] ; then
|
||||
d_api="$_SCRIPT_HOME/$_hookdomain/$_hookname"
|
||||
elif [ -f "$_SCRIPT_HOME/$_hookdomain/$_hookname.sh" ] ; then
|
||||
d_api="$_SCRIPT_HOME/$_hookdomain/$_hookname.sh"
|
||||
elif [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname" ] ; then
|
||||
d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname"
|
||||
elif [ -f "$LE_WORKING_DIR/$_hookdomain/$_hookname.sh" ] ; then
|
||||
d_api="$LE_WORKING_DIR/$_hookdomain/$_hookname.sh"
|
||||
|
Loading…
Reference in New Issue
Block a user