From 13b6dae720bee37fe3e2b0bf3297e83530e6c024 Mon Sep 17 00:00:00 2001 From: Colin Hebert Date: Thu, 27 Mar 2025 12:41:12 +1100 Subject: [PATCH] Expand to a string --- zfs-inplace-rebalancing.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zfs-inplace-rebalancing.sh b/zfs-inplace-rebalancing.sh index ea56132..4ac5123 100755 --- a/zfs-inplace-rebalancing.sh +++ b/zfs-inplace-rebalancing.sh @@ -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 }