From patchwork Wed Mar 23 17:13:30 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Menzel X-Patchwork-Id: 88103 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from ozlabs.org (localhost [127.0.0.1]) by ozlabs.org (Postfix) with ESMTP id CC5531007D5 for ; Thu, 24 Mar 2011 04:13:40 +1100 (EST) Received: from mail.gw90.de (mail.gw90.de [188.40.100.199]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id B7D06B6F7E for ; Thu, 24 Mar 2011 04:13:38 +1100 (EST) Received: from f053045005.adsl.alicedsl.de ([78.53.45.5] helo=[192.168.178.21]) by mail.gw90.de with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1Q2Rci-0004AG-0l for patchwork@lists.ozlabs.org; Wed, 23 Mar 2011 17:13:32 +0000 Subject: [PATCH] patchwork-update-commits: add missing `update` to command line From: Paul Menzel To: patchwork@lists.ozlabs.org Date: Wed, 23 Mar 2011 18:13:30 +0100 Message-ID: <1300900410.4101.27.camel@mattotaupa> Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 X-BeenThere: patchwork@lists.ozlabs.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Patchwork development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: patchwork-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Sender: patchwork-bounces+incoming=patchwork.ozlabs.org@lists.ozlabs.org Date: Wed, 23 Mar 2011 18:10:31 +0100 Otherwise the following error is shown. Too many arguments specified Signed-off-by: Paul Menzel --- tools/patchwork-update-commits | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tools/patchwork-update-commits b/tools/patchwork-update-commits index 2730216..b2a658a 100755 --- a/tools/patchwork-update-commits +++ b/tools/patchwork-update-commits @@ -13,5 +13,5 @@ git rev-list --reverse "$@" | while read commit do hash=$(git show "$commit" | python $pwpath/parser.py -#) - $pwpath/bin/pwclient -s Accepted -c "$commit" -h "$hash" + $pwpath/bin/pwclient update -s Accepted -c "$commit" -h "$hash" done