diff options
author | Paul Menzel <paulepanter@users.sourceforge.net> | 2011-03-23 18:10:31 +0100 |
---|---|---|
committer | Jeremy Kerr <jk@ozlabs.org> | 2011-03-30 14:57:17 +0800 |
commit | ac5cddbc75745bcfddc6e3ed97d75edc49540e27 (patch) | |
tree | 81a58f8599eff1708d9c98fa764c65bcd79efe11 | |
parent | f23f76b8756a12614097fec500d3ca3e6aa3227b (diff) | |
download | patchwork-ac5cddbc75745bcfddc6e3ed97d75edc49540e27.tar patchwork-ac5cddbc75745bcfddc6e3ed97d75edc49540e27.tar.gz |
patchwork-update-commits: add missing `update` to command line
Otherwise the following error is shown:
Too many arguments specified
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
-rwxr-xr-x | 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 |