From af31b433accbfeeb8e68a27b42a0b86ec7a3f990 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Thu, 10 Jul 2025 00:20:49 +0200 Subject: [PATCH] code/comments --- sh/core/code.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sh/core/code.sh b/sh/core/code.sh index f8748c0..cb4bf61 100644 --- a/sh/core/code.sh +++ b/sh/core/code.sh @@ -225,9 +225,11 @@ rwx_code_parse() { rwx_code_main() { local modules_main="${1}" - local module modules_user - # find & source modules + local module + local modules_user + # find user modules modules_user="$(rwx_main_find "${rwx_code_root}")" + # source user modules while IFS= read -r module; do # shellcheck disable=SC1090 . "${rwx_code_root}/${module}.${RWX_MAIN_EXTENSION}"