From: Paul Menzel Date: Wed, 23 Mar 2011 17:10:31 +0000 (+0100) Subject: patchwork-update-commits: add missing `update` to command line X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;ds=inline;h=ac5cddbc75745bcfddc6e3ed97d75edc49540e27;p=patchwork patchwork-update-commits: add missing `update` to command line Otherwise the following error is shown: Too many arguments specified Signed-off-by: Paul Menzel Signed-off-by: Jeremy Kerr --- 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