From 163420e112c69254089fc57793c155d0f2f4911c Mon Sep 17 00:00:00 2001 From: Takuya Fukuju Date: Fri, 8 Mar 2024 21:09:10 +0900 Subject: [PATCH] fix: remove duplicate v from core release name (#409) --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index 78e42a2..6232631 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,7 +9,7 @@ async function main() { if (!(await isReady())) { try { const [name, assets] = await findRelease(VERSION) - console.info(`Downloading v${name}`) + console.info(`Downloading ${name}`) await downloadBinary(assets.browser_download_url) } catch (e) { console.error(`Failed to download binary:\n${e}`)