Ignore jenkins tags

This commit is contained in:
Christian Weeks 2012-05-10 12:53:27 -04:00
parent 57af97858b
commit be9557b8ef
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def cleanDirs(path):
def main():
print("Obtaining version information from git")
cmd = "git describe --long"
cmd = "git describe --long --match='[^(jenkins)]*'"
try:
process = subprocess.Popen(cmdsplit(cmd), stdout=subprocess.PIPE, stderr=subprocess.STDOUT, bufsize=-1)
vers, _ = process.communicate()