From f06fdf8ee2b183a786ecadf0d526fc2c10726565 Mon Sep 17 00:00:00 2001 From: Colin Hebert Date: Thu, 27 Mar 2025 08:31:47 +1100 Subject: [PATCH] Fix shellcheck entry --- 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 1c8aed3..ea56132 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 }