From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP; 25 Sep 2016 20:25:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,397,1470726000"; d="scan'208";a="1045828691" Received: from yliu-dev.sh.intel.com (HELO yliu-dev) ([10.239.67.162]) by fmsmga001.fm.intel.com with ESMTP; 25 Sep 2016 20:25:35 -0700 Date: Mon, 26 Sep 2016 11:26:01 +0800 From: Yuanhan Liu To: Ferruh Yigit Cc: dev@dpdk.org, Thomas Monjalon 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 Content-Disposition: inline In-Reply-To: <20160923124727.30356-1-ferruh.yigit@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-dev] [PATCH v2] scripts: add more git log checks X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Sep 2016 03:25:36 -0000 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