From 28001d0873cfce1ad6a44f1c2deaf9388d953cc3 Mon Sep 17 00:00:00 2001 From: John Tapsell Date: Thu, 19 Feb 2009 07:36:00 +0000 Subject: Modify description file to say what this file is A lot of people see this message for the first time on the gitweb interface, where there is no clue as to what 'this file' means. Signed-off-by: John Tapsell Signed-off-by: Junio C Hamano --- templates/hooks--update.sample | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'templates/hooks--update.sample') diff --git a/templates/hooks--update.sample b/templates/hooks--update.sample index 93c605594..a3f68ae3b 100755 --- a/templates/hooks--update.sample +++ b/templates/hooks--update.sample @@ -43,10 +43,12 @@ allowdeletetag=$(git config --bool hooks.allowdeletetag) # check for no description projectdesc=$(sed -e '1q' "$GIT_DIR/description") -if [ -z "$projectdesc" -o "$projectdesc" = "Unnamed repository; edit this file to name it for gitweb." ]; then +case "$projectdesc" in +"Unnamed repository"* | "") echo "*** Project description file hasn't been set" >&2 exit 1 -fi + ;; +esac # --- Check types # if $newrev is 0000...0000, it's a commit to delete a ref. -- cgit v1.2.1