mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-07 10:14:46 -04:00
Prefix version tags with v
This commit is contained in:
parent
744f05b688
commit
e8839bc8dc
@ -113,6 +113,6 @@ class TagRelease(Command):
|
|||||||
|
|
||||||
def run(self, opts):
|
def run(self, opts):
|
||||||
self.info('Tagging release')
|
self.info('Tagging release')
|
||||||
subprocess.check_call('git tag -a {0} -m "version-{0}"'.format(__version__).split())
|
subprocess.check_call('git tag -a v{0} -m "version-{0}"'.format(__version__).split())
|
||||||
subprocess.check_call('git push origin {0}'.format(__version__).split())
|
subprocess.check_call('git push origin v{0}'.format(__version__).split())
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user