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

Unified Diff: tools/push-to-trunk/common_includes.py

Issue 653533003: Fix remote branch location in releases script (2). (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 2 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/push-to-trunk/common_includes.py
diff --git a/tools/push-to-trunk/common_includes.py b/tools/push-to-trunk/common_includes.py
index e2bfdd5988789959cc892959cef10449f798d488..e95a20b06442c2f33b1c03219fd79ac543fa459f 100644
--- a/tools/push-to-trunk/common_includes.py
+++ b/tools/push-to-trunk/common_includes.py
@@ -397,7 +397,7 @@ class GitTagsOnlyMixin(VCInterface):
def RemoteBranch(self, name):
if name in ["candidates", "master"]:
return "origin/%s" % name
- return "origin/branch-heads/%s" % name
+ return "branch-heads/%s" % name
def Tag(self, tag, remote, message):
# Wait for the commit to appear. Assumes unique commit message titles (this
« 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