From 743a425cd6fbf1c8984e9dd2717e593ebd9a4558 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Fri, 20 Oct 2023 09:13:49 +0100 Subject: include/git: fix already-exists download message i forgot to put the download path in printf Signed-off-by: Leah Rowe --- include/git.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/git.sh b/include/git.sh index 5fa54211..f97e5e61 100755 --- a/include/git.sh +++ b/include/git.sh @@ -99,7 +99,7 @@ clone_project() loc="${loc#src/}" loc="src/${loc}" if [ -d "${loc}" ]; then - printf "%s already exists, so skipping download\n" 1>&2 + printf "%s already exists, so skipping download\n" "$loc" 1>&2 return 0 fi -- cgit v1.2.1