0

Merge remote-tracking branch 'origin/rewrite' into anvil

This commit is contained in:
Andrew Brown
2012-02-23 19:48:38 -05:00
20 changed files with 221 additions and 45 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-'):