Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: tools/release/create_release.py

Issue 1885863003: [release] Fix ambiguous tag names. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/release/create_release.py
diff --git a/tools/release/create_release.py b/tools/release/create_release.py
index 72dfab2b25d89e47b2ddd952e8d1d38242215497..14d44b4bd6087545d9d5ba3e1c20024feb9a680c 100755
--- a/tools/release/create_release.py
+++ b/tools/release/create_release.py
@@ -240,7 +240,7 @@ class FixBrokenTag(Step):
if commit:
print "Found %s. Trying to repair tag and bail out." % self["version"]
self.Git("tag %s %s" % (self["version"], commit))
- self.Git("push origin %s" % self["version"])
+ self.Git("push origin refs/tags/%s" % self["version"])
return True
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698