0

Merge master changes into rewrite

This commit is contained in:
Andrew Brown
2012-02-23 19:42:50 -05:00
13 changed files with 146 additions and 3 deletions

View File

@@ -64,7 +64,7 @@ def findGitHash():
def findGitVersion():
try:
p = Popen(['git', 'describe', '--tags'], stdout=PIPE, stderr=PIPE)
p = Popen(['git', 'describe', '--tags'], stdout=PIPE, stderr=PIPE, shell=True)
p.stderr.close()
line = p.stdout.readlines()[0]
if line.startswith('release-'):