Skip to content
Snippets Groups Projects
Commit db062e0e authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

Fix bug in buildVersion close-release-cycle.

parent 016ae0c5
No related branches found
No related tags found
No related merge requests found
......@@ -423,7 +423,7 @@ if __name__ == '__main__':
# close the release cycle
if opt.close_release_cycle:
release = raw_input(MSG_RELEASE)
release = raw_input("Select the release:")
if not release:
sys.exit(0)
......@@ -441,7 +441,7 @@ if __name__ == '__main__':
msg = "Release %s" % release
call(["git", "tag", "-a", release, "-m", msg])
rep = raw_imput("Destroy branch %s [y/N]:" % branch)
rep = raw_input("Destroy branch %s [y/N]:" % branch)
if rep == "y":
call(["git", "branch", "-d", branch])
......
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