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

Unified Diff: tools/release/create_release.py

Issue 1881163003: [release] Fix release script. (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 6ed45a326be170f940998809a07f35f58769accb..72dfab2b25d89e47b2ddd952e8d1d38242215497 100755
--- a/tools/release/create_release.py
+++ b/tools/release/create_release.py
@@ -239,8 +239,8 @@ class FixBrokenTag(Step):
pass
if commit:
print "Found %s. Trying to repair tag and bail out." % self["version"]
- self.step.Git("tag %s %s" % (self["version"], commit))
- self.step.Git("push origin %s" % self["version"])
+ self.Git("tag %s %s" % (self["version"], commit))
+ self.Git("push origin %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