This commit is contained in:
Marc Beninca 2023-05-15 18:59:04 +02:00
parent 80f19583ce
commit 9609171ad6

View file

@ -20,7 +20,7 @@ if [ -f "${file}" ] ; then
local modules=($(find "${root}" -type 'f' -name '*.sh'))
local module
for module in "${modules[@]}" ; do
if [ "${module}" != "${file}" ] ; then
if [ "${module}" != "${path}" ] ; then
source "${module}"
fi
done