Code

contrib/ciabot: git-describe commit instead of HEAD
authorSven Eckelmann <sven.eckelmann@gmx.de>
Mon, 20 Sep 2010 09:31:22 +0000 (11:31 +0200)
committerJunio C Hamano <gitster@pobox.com>
Fri, 29 Oct 2010 21:09:48 +0000 (14:09 -0700)
For each commit a shorter version of the name will be generated. This is
either the truncated hash or the output of git-describe. The
call to git-describe was only made with an empty shell variable instead
of an actual commit hash. Thus it only described the current HEAD and
not each commit we want to submit to cia.vc.

Signed-off-by: Sven Eckelmann <sven.eckelmann@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
contrib/ciabot/ciabot.py

index d0627e0852cc47df3ffd29754254ccb99c3b2ad0..9775dffb5d49521a7078643104762cd136edffcc 100755 (executable)
@@ -122,7 +122,7 @@ def report(refname, merged):
     branch = os.path.basename(refname)
 
     # Compute a shortnane for the revision
     branch = os.path.basename(refname)
 
     # Compute a shortnane for the revision
-    rev = do("git describe ${merged} 2>/dev/null") or merged[:12]
+    rev = do("git describe '"+ merged +"' 2>/dev/null") or merged[:12]
 
     # Extract the neta-information for the commit
     rawcommit = do("git cat-file commit " + merged)
 
     # Extract the neta-information for the commit
     rawcommit = do("git cat-file commit " + merged)