mirror of
https://gitlab.com/openlp/packaging.git
synced 2024-12-22 21:12:50 +00:00
Fix getting bzr tags
This commit is contained in:
parent
c0cbc8a014
commit
ec7df6dd5a
@ -340,7 +340,7 @@ class MacosxBuilder(object):
|
||||
"""
|
||||
self._print('Writing version file...')
|
||||
os.chdir(self.branch_path)
|
||||
bzr = Popen(('bzr', 'tags', '--sort', 'time'), stdout=PIPE)
|
||||
bzr = Popen(('bzr', 'tags'), stdout=PIPE)
|
||||
output = bzr.communicate()[0]
|
||||
code = bzr.wait()
|
||||
if code != 0:
|
||||
|
@ -318,7 +318,7 @@ class WindowsBuilder(object):
|
||||
"""
|
||||
self._print('Writing version file...')
|
||||
os.chdir(self.branch_path)
|
||||
bzr = Popen(('bzr', 'tags', '--sort', 'time'), stdout=PIPE)
|
||||
bzr = Popen(('bzr', 'tags'), stdout=PIPE)
|
||||
output = bzr.communicate()[0]
|
||||
code = bzr.wait()
|
||||
if code != 0:
|
||||
|
Loading…
Reference in New Issue
Block a user