This commit is contained in:
Phil Krylov 2024-05-30 09:22:20 +08:00 committed by GitHub
commit 704d9330b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3252,7 +3252,7 @@ _checkConf() {
_d="$1"
_c_file="$2"
_debug "Start _checkConf from:$_c_file"
if [ ! -f "$2" ] && ! echo "$2" | grep '*$' >/dev/null && echo "$2" | grep '*' >/dev/null; then
if [ ! -f "$2" ] && echo "$2" | grep '*' >/dev/null; then
_debug "wildcard"
for _w_f in $2; do
if [ -f "$_w_f" ] && _checkConf "$1" "$_w_f"; then