From 86b80a23a5737a06e72afda276723e4876ac3394 Mon Sep 17 00:00:00 2001 From: Yug Date: Tue, 27 Oct 2020 17:01:36 +0530 Subject: [PATCH] ci: Fix shellcheck warnings for prepare.sh Shellcheck suggests use of doube quotes to prevent word splitting, hence adding the same. Signed-off-by: Yug --- prepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare.sh b/prepare.sh index 7a413df12..f79d7cab7 100755 --- a/prepare.sh +++ b/prepare.sh @@ -87,7 +87,7 @@ then depth='' fi -git clone ${depth} --branch="${base}" "${gitrepo}" "${workdir}" +git clone "${depth}" --branch="${base}" "${gitrepo}" "${workdir}" cd "${workdir}" git fetch origin "${ref}:tip/${ref}" git checkout "tip/${ref}"