Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2010-11-29 01:44:20 +0300
committerMikkel Krautz <mikkel@krautz.dk>2010-11-29 01:44:20 +0300
commita0207d525099e61ec2152a4f0ecc2eb052beb4c5 (patch)
tree59cb83ccfc3ada533066cc8e9d654e8df13d1529 /macx/scripts
parent4f5089fe30a555717957de067f0a9e2bb75adf72 (diff)
Use 'git describe' in osxdist.py.
Diffstat (limited to 'macx/scripts')
-rwxr-xr-xmacx/scripts/osxdist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/macx/scripts/osxdist.py b/macx/scripts/osxdist.py
index 79a4504e1..c15d0511f 100755
--- a/macx/scripts/osxdist.py
+++ b/macx/scripts/osxdist.py
@@ -13,7 +13,7 @@ from optparse import OptionParser
def gitrev():
'''Get git revision of the current Mumble build.'''
- return os.popen('git show HEAD | grep commit | sed \'s,commit\ ,,\' | head -c6').read()
+ return os.popen('git describe').read()
def codesign(id, path):
'''Call the codesign executable.'''