From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] scripts: improve quiet checkpatch Date: Sun, 13 Dec 2015 03:37:22 +0100 Message-ID: <1449974242-31780-1-git-send-email-thomas.monjalon@6wind.com> To: dev@dpdk.org Return-path: Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id 35DAC8E82 for ; Sun, 13 Dec 2015 03:38:53 +0100 (CET) Received: by mail-wm0-f53.google.com with SMTP id n186so77143460wmn.1 for ; Sat, 12 Dec 2015 18:38:53 -0800 (PST) Received: from localhost.localdomain (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id e9sm8716633wjp.18.2015.12.12.18.38.51 for (version=TLSv1/SSLv3 cipher=OTHER); Sat, 12 Dec 2015 18:38:51 -0800 (PST) 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" The option --no-summary will remove this line in quiet mode: total: 1 errors, 0 warnings, 7 lines checked Signed-off-by: Thomas Monjalon --- scripts/checkpatches.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/checkpatches.sh b/scripts/checkpatches.sh index afc611b..36376e6 100755 --- a/scripts/checkpatches.sh +++ b/scripts/checkpatches.sh @@ -58,7 +58,7 @@ quiet=false verbose=false while getopts hqv ARG ; do case $ARG in - q ) quiet=true ;; + q ) quiet=true && options="$options --no-summary" ;; v ) verbose=true ;; h ) print_usage ; exit 0 ;; ? ) print_usage ; exit 1 ;; -- 2.5.2