From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [PATCH v2] scripts: add more git log checks Date: Mon, 26 Sep 2016 11:26:01 +0800 Message-ID: <20160926032601.GI23158@yliu-dev.sh.intel.com> References: <20160920085303.24631-1-ferruh.yigit@intel.com> <20160923124727.30356-1-ferruh.yigit@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: dev@dpdk.org, Thomas Monjalon To: Ferruh Yigit Return-path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 65F702BA1 for ; Mon, 26 Sep 2016 05:25:36 +0200 (CEST) Content-Disposition: inline In-Reply-To: <20160923124727.30356-1-ferruh.yigit@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, Sep 23, 2016 at 01:47:27PM +0100, Ferruh Yigit wrote: > Alphabetically sorted items to check and > added git log capitalization checks for LRO, NIC and PMD > > Signed-off-by: Ferruh Yigit > --- > scripts/check-git-log.sh | 21 ++++++++++++--------- > 1 file changed, 12 insertions(+), 9 deletions(-) > > diff --git a/scripts/check-git-log.sh b/scripts/check-git-log.sh > index 1e05cf2..5f8a9fc 100755 > --- a/scripts/check-git-log.sh > +++ b/scripts/check-git-log.sh > @@ -112,20 +112,23 @@ bad=$(echo "$headlines" | grep -E --color=always \ > -e '\<[hsf]w\>' \ > -e '\' \ > -e ':.*\' \ > + -e ':.*\' \ > + -e ':.*\' \ > + -e ':.*\' \ > -e ':.*\' \ > - -e ':.*\' \ > - -e ':.*\' \ > + -e ':.*\' \ > + -e ':.*\' \ > + -e ':.*\' \ > -e ':.*\' \ > + -e ':.*\' \ > + -e ':.*\' \ > -e ':.*\' \ > - -e ':.*\' \ > + -e ':.*\' \ > + -e ':.*\' \ > -e ':.*\' \ > - -e ':.*\' \ > - -e ':.*\' \ > - -e ':.*\' \ > -e ':.*\' \ > - -e ':.*\' \ > - -e ':.*\' \ > - -e ':.*\' \ > + -e ':.*\' \ > + -e ':.*\' \ That basically means to me that you should store this (long) list into a file, with the help of "-f" option. --yliu > | sed 's,^,\t,') > [ -z "$bad" ] || printf "Wrong headline lowercase:\n$bad\n" > > -- > 2.7.4