Skip to content

Commit

Permalink
fix(v8): use V8's main branch (#555)
Browse files Browse the repository at this point in the history
It became the default recently.

Refs: https://chromium.googlesource.com/v8/v8.git/
  • Loading branch information
targos committed Sep 3, 2021
1 parent 3e8b07d commit 241055b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/update-v8/majorUpdate.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function checkoutBranch() {
title: 'Checkout V8 branch',
task: async(ctx) => {
let version = ctx.branch;
await ctx.execGitV8('checkout', 'origin/master');
await ctx.execGitV8('checkout', 'origin/main');
if (!versionReg.test(version)) {
// try to get the latest tag
const res = await ctx.execGitV8(
Expand Down

0 comments on commit 241055b

Please sign in to comment.