From bb5a8b132cf79697b345e7160b072b39e9dab152 Mon Sep 17 00:00:00 2001 From: Mark Yen Date: Fri, 31 May 2024 13:39:40 -0700 Subject: [PATCH] Accept review suggestion Co-authored-by: Jan Dubois Signed-off-by: Mark Yen (cherry picked from commit 8f782de061fa490ffe1eca2bafd3a8414933e6b6) --- scripts/release-merge-to-main.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/release-merge-to-main.ts b/scripts/release-merge-to-main.ts index 277892f69dd..85818610f6d 100644 --- a/scripts/release-merge-to-main.ts +++ b/scripts/release-merge-to-main.ts @@ -87,8 +87,7 @@ async function ensureBranch(owner: string, repo: string, branchName: string, tag if (!(ex instanceof RequestError) || ex.status !== 404) { throw ex; } - console.log(`Creating new branch ${ owner }/${ repo }/${ ref }` + - `at ${ sha }`); + console.log(`Creating new branch ${ owner }/${ repo }/${ ref } at ${ sha }`); // Branch does not exist; create it. await git.createRef({ // Only this API takes a `refs/` prefix; get & update omit it.