Print whole line in debug

This commit is contained in:
Colin Hebert
2025-03-23 12:09:46 +11:00
parent d4f52ee5a7
commit a8beeaf951

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=$1
text=$@
echo "${text}"
fi
}