diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-09 22:46:13 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-09 22:46:13 +0100 |
commit | b78009e28aab38bc149be5c57aa23505b8dd2a08 (patch) | |
tree | f9bb6604c0fc77a00081ec65f9c8e093bc762c95 | |
parent | f45f5e625daa119ec5c830290164a1a469054da7 (diff) |
checkgit: properly print output to stderr
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rwxr-xr-x | checkgit | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" } |