Don't include newline character from 'git describe' in osxdist.py.

This commit is contained in:
Mikkel Krautz 2010-11-29 01:37:57 +01:00
parent ef07a72071
commit 2ffa6719e0

View File

@ -13,7 +13,7 @@ from optparse import OptionParser
def gitrev():
'''Get git revision of the current Mumble build.'''
return os.popen('git describe').read()
return os.popen('git describe').read()[:-1]
def codesign(id, path):
'''Call the codesign executable.'''