This commit is contained in:
Marc Beninca 2024-11-13 12:41:37 +01:00
parent dae14f780e
commit 2a568eeb22
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

View file

@ -16,19 +16,20 @@ main_link_bashrc() {
main_import_modules() {
local file="${1}"
if [ -f "${file}" ]; then
local path
local root
path="$(realpath "${file}")"
local ifs module modules path root
path="$(realpath --canonicalize-existing "${file}")"
root="$(dirname "${path}")"
local IFS=$'\n'
local modules=($(find "${root}" -type "f" -name "*.sh" | sort))
local module
for module in "${modules[@]}"; do
modules="$(find "${root}" -type "f" -name "*.sh" | sort)"
ifs="${IFS}"
IFS="
"
for module in ${modules}; do
if [ "${module}" != "${path}" ]; then
. "${module}"
fi
done
log_trace "${modules[@]}"
IFS="${ifs}"
log_trace "${modules}"
return 0
else
log_fatal "No file: ${file}"