From 3a3019ad02cf0e02ad88f13032fb1d681c3dc836 Mon Sep 17 00:00:00 2001 From: Chris Collison Date: Tue, 13 Jan 2026 15:33:02 -0600 Subject: [PATCH] style: add white space after download url in error message --- src/download-cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/download-cli.js b/src/download-cli.js index 59f4076..3007849 100644 --- a/src/download-cli.js +++ b/src/download-cli.js @@ -23,7 +23,7 @@ fs.mkdirSync(path.dirname(EXECUTABLE_PATH), { recursive: true }); async function downloadFile(url, dest) { const res = await fetch(url); if (!res.ok) { - throw new Error(`Failed to fetch ${url}: ${res.statusText}`); + throw new Error(`Failed to fetch ${url} : ${res.statusText}`); } const fileStream = fs.createWriteStream(dest); await pipeline(Readable.fromWeb(res.body), fileStream);