Expand to a string

This commit is contained in:
Colin Hebert 2025-03-27 12:41:12 +11:00
parent 6effa0b8fc
commit 13b6dae720
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
}