utils.sh: fixed missing export of function_exists

This commit is contained in:
2021-10-27 10:47:54 +02:00
parent 9839ad87f6
commit 78169b3088

View File

@@ -15,6 +15,7 @@ function_exists() {
declare -f -F $1 > /dev/null declare -f -F $1 > /dev/null
return $? return $?
} }
export -f function_exists
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------