From 93318dff5f7f3abb3ea0c1c2dac08d0c348642ad Mon Sep 17 00:00:00 2001 From: m8in Date: Sat, 25 Apr 2026 22:33:10 +0200 Subject: [PATCH] typo fixed and format --- core/base.module.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/base.module.sh b/core/base.module.sh index 0629b77..66a4a24 100755 --- a/core/base.module.sh +++ b/core/base.module.sh @@ -264,10 +264,10 @@ function base.printEnvironment() { [[ "${CIS[SET]:+isset}" != "isset" ]] \ && return 1 - echo "Content of array CIS:" - echo "---------------------" + echo "Content of array CIS: (all folders end with an tailing '/')" + echo "-----------------------------------------------------------" for _KEY in "${!CIS[@]}"; do - printf " %s\n" "CIS[${_KEY}]: ${CIS[${_KEY}]}\n" + printf " %s\n" "CIS[${_KEY}]: ${CIS[${_KEY}]}" done return 0 }