From 96dd26819518fcc087842f4eb96b41f19d9ce3dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Fri, 3 Sep 2021 11:41:46 +0200 Subject: [PATCH] fix(v8): use V8's main branch It became the default recently. Refs: https://chromium.googlesource.com/v8/v8.git/ --- lib/update-v8/majorUpdate.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/update-v8/majorUpdate.js b/lib/update-v8/majorUpdate.js index 07d8cb36..d5f9171d 100644 --- a/lib/update-v8/majorUpdate.js +++ b/lib/update-v8/majorUpdate.js @@ -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(