summaryrefslogtreecommitdiffstats
path: root/tools/patchwork-update-commits
diff options
context:
space:
mode:
authorPaul Menzel <paulepanter@users.sourceforge.net>2011-03-23 18:10:31 +0100
committerJeremy Kerr <jk@ozlabs.org>2011-03-30 14:57:17 +0800
commitac5cddbc75745bcfddc6e3ed97d75edc49540e27 (patch)
tree81a58f8599eff1708d9c98fa764c65bcd79efe11 /tools/patchwork-update-commits
parentf23f76b8756a12614097fec500d3ca3e6aa3227b (diff)
downloadpatchwork-ac5cddbc75745bcfddc6e3ed97d75edc49540e27.tar.bz2
patchwork-ac5cddbc75745bcfddc6e3ed97d75edc49540e27.tar.xz
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>
Diffstat (limited to 'tools/patchwork-update-commits')
-rwxr-xr-xtools/patchwork-update-commits2
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