From 6d693541547666ff20d62454a1c66f95776467ed Mon Sep 17 00:00:00 2001 From: "machenbach@chromium.org" Date: Tue, 14 Oct 2014 12:10:48 +0000 Subject: [PATCH] Fix remote branch location in releases script (2). BUG=chromium:410721 LOG=n TEST=script_test.py TBR=tandrii@chromium.org Review URL: https://codereview.chromium.org/653533003 git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24598 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- tools/push-to-trunk/common_includes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/push-to-trunk/common_includes.py b/tools/push-to-trunk/common_includes.py index e2bfdd5..e95a20b 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 -- 2.7.4