From 175bbf13fe2e58f12f018d48fd62fe0f801921b0 Mon Sep 17 00:00:00 2001 From: oxmc <67136658+oxmc@users.noreply.github.com> Date: Fri, 17 Nov 2023 14:45:43 -0800 Subject: [PATCH] fix: missed space in downloading log line (#1064) Fixes a missed space in the "Download node.js" log line. --------- Co-authored-by: Jared Allard --- src/steps/download.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/download.ts b/src/steps/download.ts index 587a5b9..e400058 100644 --- a/src/steps/download.ts +++ b/src/steps/download.ts @@ -58,7 +58,7 @@ export default async function downloadNode(compiler: NexeCompiler, next: () => P { sourceUrl, downloadOptions, build } = compiler.options, url = sourceUrl || `https://nodejs.org/dist/v${version}/node-v${version}.tar.gz`, step = log.step( - `Downloading ${build ? '' : 'pre-built '}Node.js${build ? `source from: ${url}` : ''}` + `Downloading ${build ? '' : 'pre-built '}Node.js${build ? ` source from: ${url}` : ''}` ), exeLocation = compiler.getNodeExecutableLocation(build ? undefined : target), downloadExists = await pathExistsAsync(build ? src : exeLocation)