From af076a65c0c33dff722d5e794c3dd9c424c876f7 Mon Sep 17 00:00:00 2001 From: Etienne Champetier Date: Tue, 25 Jul 2017 10:43:56 -0700 Subject: [PATCH] build,travis: allow '/' in the start of the commit Signed-off-by: Etienne Champetier --- .travis_do.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis_do.sh b/.travis_do.sh index 52570fc25..c30e785ca 100755 --- a/.travis_do.sh +++ b/.travis_do.sh @@ -121,7 +121,7 @@ test_commits() { fi subject="$(git show -s --format=%s $commit)" - if echo "$subject" | grep -q '^[0-9A-Za-z,-]\+: '; then + if echo "$subject" | grep -q '^[0-9A-Za-z,/-]\+: '; then echo_green "Commit subject line seems ok ($subject)" else echo_red "Commit subject line MUST start with ': ' ($subject)"