From 7c456cb9a1fb3e2e01bf7acc395cb93554e4d644 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 31 Oct 2023 08:27:09 -0600 Subject: [PATCH] Use proper sentences in error messages. --- contrib/utilities/indent_common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/utilities/indent_common.sh b/contrib/utilities/indent_common.sh index 17badd4826..09f2982bc7 100644 --- a/contrib/utilities/indent_common.sh +++ b/contrib/utilities/indent_common.sh @@ -84,9 +84,9 @@ checks() { git log --since "2019-01-01" --format="%aN" --no-merges | sort -u | while read name ; do words=($name) if [ "${#words[@]}" -lt "2" -a "$name" != "dependabot[bot]" ]; then - echo "invalid author '$name' without firstname and lastname" + echo "Invalid author '$name' without firstname and lastname" echo "" - echo "hint: for possible solutions, consult the webpage:" + echo "For possible solutions, consult the following page:" echo " https://github.com/dealii/dealii/wiki/Commit-authorship" exit 2 fi -- 2.39.5