From b0e9eeba366d037e0d073f164490f933cb849b3f Mon Sep 17 00:00:00 2001 From: Niels de Vos Date: Mon, 20 Mar 2023 09:54:58 +0100 Subject: [PATCH] ci: correct parameter passing in checkout-repo.sh ShellCheck failed with the following warning: ``` SC2086 (info): Double quote to prevent globbing and word splitting. Did you mean: git config --global --add safe.directory "${PWD}" ``` Signed-off-by: Niels de Vos --- deploy/checkout-repo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/checkout-repo.sh b/deploy/checkout-repo.sh index 384724bf9..0ebee4ff3 100755 --- a/deploy/checkout-repo.sh +++ b/deploy/checkout-repo.sh @@ -11,7 +11,7 @@ fail() { # exit in case a command fails set -e -git config --global --add safe.directory ${PWD} +git config --global --add safe.directory "${PWD}" git init . git remote add origin "${GIT_REPO}" git fetch origin "${GIT_REF}"