From 184ad405847788a19642aa88a36033cf8c956cee Mon Sep 17 00:00:00 2001 From: Nisha K Date: Wed, 13 Oct 2021 08:11:50 -0700 Subject: [PATCH] Double quote array expansion Double quote array expansions to avoid re-splitting elements. Signed-off-by: Nisha K --- scripts/migrate-for-pre-070-volumes.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/migrate-for-pre-070-volumes.sh b/scripts/migrate-for-pre-070-volumes.sh index 0963bb4..4a413f7 100755 --- a/scripts/migrate-for-pre-070-volumes.sh +++ b/scripts/migrate-for-pre-070-volumes.sh @@ -30,6 +30,6 @@ case $ARG in if [[ $# -ne 1 ]]; then echo "Command args number shouldn't be greater than 1" fi - exec_command ${@} + exec_command "${@}" ;; esac