From patchwork Wed Mar 23 17:13:30 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: patchwork-update-commits: add missing `update` to command line Date: Wed, 23 Mar 2011 07:13:30 -0000 From: Paul Menzel X-Patchwork-Id: 88103 Message-Id: <1300900410.4101.27.camel@mattotaupa> To: patchwork@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