diff --git a/src/freedombone-utils-depends b/src/freedombone-utils-depends index aee2a609..bb2572ac 100755 --- a/src/freedombone-utils-depends +++ b/src/freedombone-utils-depends @@ -29,14 +29,14 @@ # along with this program. If not, see . function function_check { - if [ ! "$(type ${1} 2>/dev/null)" ]; then + if [ ! "$(type "${1}" 2>/dev/null)" ]; then echo $"Dependency error: The function ${1} has not been defined" exit 72528 fi } function function_exists { - if [ ! "$(type ${1} 2>/dev/null)" ]; then + if [ ! "$(type "${1}" 2>/dev/null)" ]; then echo "0" else echo "1"