aboutsummaryrefslogtreecommitdiffstats
path: root/git-tools/hooks/commit-msg
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-06-16 15:28:26 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-06-16 15:28:26 +0200
commit58fd91dde105a0755e906452842f635770f8dd23 (patch)
tree9cc552d550454c5a234fa5d0579daa8e51b11258 /git-tools/hooks/commit-msg
parentcebe7c8028281be116a438a0683eaab227afe994 (diff)
parent0b106ab0e3f9fe94e42a55db27d1d989c06b5039 (diff)
downloadforums-58fd91dde105a0755e906452842f635770f8dd23.tar
forums-58fd91dde105a0755e906452842f635770f8dd23.tar.gz
forums-58fd91dde105a0755e906452842f635770f8dd23.tar.bz2
forums-58fd91dde105a0755e906452842f635770f8dd23.tar.xz
forums-58fd91dde105a0755e906452842f635770f8dd23.zip
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/12720] Allow commit heading to begin with lowercase letters
Diffstat (limited to 'git-tools/hooks/commit-msg')
-rwxr-xr-xgit-tools/hooks/commit-msg4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-tools/hooks/commit-msg b/git-tools/hooks/commit-msg
index b156d276df..136606252c 100755
--- a/git-tools/hooks/commit-msg
+++ b/git-tools/hooks/commit-msg
@@ -191,12 +191,12 @@ do
err=$ERR_HEADER;
echo "$line" | grep -Eq "^\[(ticket/[0-9]+|feature/$branch_regex|task/$branch_regex)\] .+$"
result=$?
- if ! echo "$line" | grep -Eq "^\[(ticket/[0-9]+|feature/$branch_regex|task/$branch_regex)\] [A-Z].+$"
+ if ! echo "$line" | grep -Eq "^\[(ticket/[0-9]+|feature/$branch_regex|task/$branch_regex)\] [a-zA-Z].+$"
then
# Don't be too strict.
# Commits may be temporary, intended to be squashed later.
# Just issue a warning here.
- complain "$severity: heading should be a sentence beginning with a capital letter." 1>&2
+ complain "$severity: heading should be a sentence beginning with a letter." 1>&2
complain "You entered:" 1>&2
complain "$line" 1>&2
fi