mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-15 22:45:54 +01:00
Prefix version tags with v
This commit is contained in:
parent
744f05b688
commit
e8839bc8dc
1 changed files with 2 additions and 2 deletions
|
|
@ -113,6 +113,6 @@ class TagRelease(Command):
|
|||
|
||||
def run(self, opts):
|
||||
self.info('Tagging release')
|
||||
subprocess.check_call('git tag -a {0} -m "version-{0}"'.format(__version__).split())
|
||||
subprocess.check_call('git push origin {0}'.format(__version__).split())
|
||||
subprocess.check_call('git tag -a v{0} -m "version-{0}"'.format(__version__).split())
|
||||
subprocess.check_call('git push origin v{0}'.format(__version__).split())
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue