work with newer git versions

This commit is contained in:
Simon Hausmann
2007-03-07 19:58:54 +01:00
parent 3ac8ff6810
commit fbaef94e4e

View File

@@ -25,7 +25,10 @@ for o, a in opts:
sout, sin, serr = popen2.popen3("git-name-rev --tags `git-rev-parse %s`" % branch)
output = sout.read()
tagIdx = output.index(" tags/p4/")
caretIdx = output.index("^")
try:
caretIdx = output.index("^")
except:
caretIdx = len(output) - 1
rev = int(output[tagIdx + 9 : caretIdx])
allTags = os.popen("git tag -l p4/").readlines()