diff options
Diffstat (limited to 'tools/patchwork-update-commits')
-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 62c91c3..269dac9 100755 --- a/tools/patchwork-update-commits +++ b/tools/patchwork-update-commits @@ -16,5 +16,5 @@ fi git rev-list --reverse "$@" | while read -r commit; do hash=$(git diff "$commit~..$commit" | python "$PW_DIR/hasher.py") - "$PW_DIR/bin/pwclient" update -s Accepted -c "$commit" -h "$hash" + pwclient update -s Accepted -c "$commit" -h "$hash" done |