diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-20 09:13:49 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-20 09:13:49 +0100 |
commit | 743a425cd6fbf1c8984e9dd2717e593ebd9a4558 (patch) | |
tree | 32ff1f329a0543c32a0d397afa67da5c9a2c4efd /include | |
parent | 73145b7980a4d1c70933aeba0672615e776811bc (diff) |
include/git: fix already-exists download message
i forgot to put the download path in printf
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rwxr-xr-x | include/git.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |