From 06ac01a46af471207b93266e55eb9880e87e0114 Mon Sep 17 00:00:00 2001 From: Sven Eckelmann Date: Mon, 20 Sep 2010 11:31:22 +0200 Subject: [PATCH] contrib/ciabot: git-describe commit instead of HEAD 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 Signed-off-by: Junio C Hamano --- contrib/ciabot/ciabot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/ciabot/ciabot.py b/contrib/ciabot/ciabot.py index d0627e0852..9775dffb5d 100755 --- a/contrib/ciabot/ciabot.py +++ b/contrib/ciabot/ciabot.py @@ -122,7 +122,7 @@ def report(refname, merged): 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) -- 2.11.4.GIT