From 78169b3088126c802a22e9286e1beb62c3d2a3d3 Mon Sep 17 00:00:00 2001 From: fatalerrors Date: Wed, 27 Oct 2021 10:47:54 +0200 Subject: [PATCH] utils.sh: fixed missing export of function_exists --- lib/utils.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils.sh b/lib/utils.sh index 5d8e038..125652a 100644 --- a/lib/utils.sh +++ b/lib/utils.sh @@ -15,6 +15,7 @@ function_exists() { declare -f -F $1 > /dev/null return $? } +export -f function_exists # ------------------------------------------------------------------------------