summaryrefslogtreecommitdiff
path: root/repo
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-03-28 06:57:47 -0400
committerEric S. Raymond <esr@thyrsus.com>2010-03-28 06:57:47 -0400
commit2b2481ddf1e55b64584db6aad8c9973653b6027f (patch)
treeeb980e97db363d997cb18eb4220e08f6516e1b82 /repo
parent51eeb3dabc4d4e13e6f5eeee45c7ce772506df4c (diff)
downloadgpsd-2b2481ddf1e55b64584db6aad8c9973653b6027f.tar.gz
Change the way ciabot.py is called, should speed up multi-commit updates.
Diffstat (limited to 'repo')
-rwxr-xr-xrepo/hooks/update4
1 files changed, 1 insertions, 3 deletions
diff --git a/repo/hooks/update b/repo/hooks/update
index 7cabe632..18dd93d5 100755
--- a/repo/hooks/update
+++ b/repo/hooks/update
@@ -132,9 +132,7 @@ case "$refname","$newrev_type" in
;;
esac
-for merged in $(git rev-list ${oldrev}..${newrev} | tac) ; do
- /gitroot/gpsd/hooks/ciabot.py ${refname} ${merged}
-done
+/gitroot/gpsd/hooks/ciabot.py ${refname} $(git rev-list ${oldrev}..${newrev} | tac)
# --- Finished