typo fixed and format

This commit is contained in:
m8in
2026-04-25 22:33:10 +02:00
parent 410008a7dd
commit 93318dff5f
+3 -3
View File
@@ -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
}