From d1d85326889f79c7744e7477c2566ad0c6a635e0 Mon Sep 17 00:00:00 2001 From: Lin Jen-Shin <godfat@godfat.org> Date: Wed, 14 Jul 2021 20:39:18 +0800 Subject: [PATCH] Quote shell variables to avoid globing --- scripts/utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/utils.sh b/scripts/utils.sh index 529491c3a0d5..dcb9de9469a6 100644 --- a/scripts/utils.sh +++ b/scripts/utils.sh @@ -40,7 +40,7 @@ function bundle_install_script() { bundle config set path 'vendor' bundle config set clean 'true' - echo $BUNDLE_WITHOUT + echo "${BUNDLE_WITHOUT}" bundle config run_timed_command "bundle install ${BUNDLE_INSTALL_FLAGS} ${extra_install_args} && bundle check" -- GitLab