summaryrefslogtreecommitdiff
path: root/deps/v8/tools/release/auto_push.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/release/auto_push.py')
-rwxr-xr-xdeps/v8/tools/release/auto_push.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/tools/release/auto_push.py b/deps/v8/tools/release/auto_push.py
index aba5cba72a..ca9e5e8734 100755
--- a/deps/v8/tools/release/auto_push.py
+++ b/deps/v8/tools/release/auto_push.py
@@ -46,12 +46,12 @@ class Preparation(Step):
class FetchCandidate(Step):
- MESSAGE = "Fetching V8 roll ref."
+ MESSAGE = "Fetching V8 lkgr ref."
def RunStep(self):
# The roll ref points to the candidate to be rolled.
- self.Git("fetch origin +refs/heads/roll:refs/heads/roll")
- self["candidate"] = self.Git("show-ref -s refs/heads/roll").strip()
+ self.Git("fetch origin +refs/heads/lkgr:refs/heads/lkgr")
+ self["candidate"] = self.Git("show-ref -s refs/heads/lkgr").strip()
class LastReleaseBailout(Step):