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 <ndevos@ibm.com>
This commit is contained in:
Niels de Vos 2023-03-20 09:54:58 +01:00 committed by mergify[bot]
parent 8135680065
commit b0e9eeba36

View File

@ -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}"