Skip to content
Snippets Groups Projects
Commit 278bd78b authored by Pospelov, Gennady's avatar Pospelov, Gennady Committed by GitHub
Browse files

Merge pull request #18 from waltervh/versiontag

Add 'v' in automatic version tag script
parents f85abeb7 d6395ed1
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ def finalize_git():
cmd = "cd %s; git push" % get_source_dir()
run_command(cmd)
cmd = "cd %s; git tag -a %s -m \"Release %s\"" % (get_source_dir(), get_version(), get_version())
cmd = "cd %s; git tag -a v%s -m \"Release %s\"" % (get_source_dir(), get_version(), get_version())
run_command(cmd)
cmd = "cd %s; git push --tags" % get_source_dir()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment