Skip to content

Commit 241055b

Browse files
authored
fix(v8): use V8's main branch (#555)
It became the default recently. Refs: https://chromium.googlesource.com/v8/v8.git/
1 parent 3e8b07d commit 241055b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/update-v8/majorUpdate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function checkoutBranch() {
4040
title: 'Checkout V8 branch',
4141
task: async(ctx) => {
4242
let version = ctx.branch;
43-
await ctx.execGitV8('checkout', 'origin/master');
43+
await ctx.execGitV8('checkout', 'origin/main');
4444
if (!versionReg.test(version)) {
4545
// try to get the latest tag
4646
const res = await ctx.execGitV8(

0 commit comments

Comments
 (0)