Fix shellcheck entry

This commit is contained in:
Colin Hebert 2025-03-27 08:31:47 +11:00
parent 1f9ae6269f
commit f06fdf8ee2
No known key found for this signature in database

View File

@ -39,7 +39,7 @@ function color_echo() {
# Print a given text entirely in a given color
function echo_debug() {
if [ "$debug_flag" = true ]; then
text=$@
text=("$@")
echo "${text}"
fi
}