From 1e262c9ffd3d3ff83b0d94f048f6b4653899340c Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Sat, 24 Mar 2012 18:01:34 +0100 Subject: git-hooks: commit-msg should not search for whitespace in the diff itself The additional sed removes every line after seeing the first line starting with a #, just like git will do it later as well. See: http://article.gmane.org/gmane.comp.documentfoundation.libreoffice.devel/26794 Signed-off-by: Petr Mladek --- git-hooks/commit-msg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-hooks/commit-msg b/git-hooks/commit-msg index 378acfa00c57..f2bcb3f13a5a 100755 --- a/git-hooks/commit-msg +++ b/git-hooks/commit-msg @@ -57,7 +57,7 @@ fi # Check for whitespace in front of *'s -if [ -n "`grep '^[[:space:]]\+\*.*:' $1`" -a -z "`grep '^\*' $1`" ] ; then +if [ -n "`sed '/^#/,$d' $1 | grep '^[[:space:]]\+\*.*:'`" -a -z "`grep '^\*' $1`" ] ; then abort "$1" "Please don't use whitespace in front of '* file: Description.' entries." fi -- cgit