summaryrefslogtreecommitdiff
path: root/checkgit
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-09-09 22:46:13 +0100
committerLeah Rowe <leah@libreboot.org>2023-09-09 22:46:13 +0100
commitb78009e28aab38bc149be5c57aa23505b8dd2a08 (patch)
treef9bb6604c0fc77a00081ec65f9c8e093bc762c95 /checkgit
parentf45f5e625daa119ec5c830290164a1a469054da7 (diff)
checkgit: properly print output to stderr
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'checkgit')
-rwxr-xr-xcheckgit2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkgit b/checkgit
index 06a5bd7a..ba8bfe70 100755
--- a/checkgit
+++ b/checkgit
@@ -20,7 +20,7 @@ fail()
{
printf "You must configure Git, before using %s's build system. Do:\n" \
"${projectname}" 1>&2
- printf "%s\n\n" "${1}"
+ printf "%s\n\n" "${1}" 1>&2
err "Misconfigured git-scm"
}