From 761b00c5e913e0b9e2fe2d6402dbb6de8e63cb7c Mon Sep 17 00:00:00 2001 From: Ted Hess Date: Sat, 15 Dec 2018 15:53:46 -0500 Subject: [PATCH] CircleCI: Fix Debian grep compatibility Signed-off-by: Ted Hess --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 13a77ed50..9f1dc1576 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,7 +39,7 @@ jobs: fi subject="$(git show -s --format=%s $commit)" - if echo "$subject" | grep -q -e '^[0-9A-Za-z,/_-+]\+: ' -e '^Revert '; then + if echo "$subject" | grep -q -e '^[0-9A-Za-z,+/_-]\+: ' -e '^Revert '; then echo_green "Commit subject line seems ok ($subject)" else echo_red "Commit subject line MUST start with ': ' ($subject)"