From: Ted Hess Date: Sat, 15 Dec 2018 20:53:46 +0000 (-0500) Subject: CircleCI: Fix Debian grep compatibility X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=761b00c5e913e0b9e2fe2d6402dbb6de8e63cb7c;p=feed%2Fpackages.git CircleCI: Fix Debian grep compatibility Signed-off-by: Ted Hess --- diff --git a/.circleci/config.yml b/.circleci/config.yml index 13a77ed50e..9f1dc15763 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)"