fix: missed space in downloading log line (#1064)

Fixes a missed space in the "Download node.js" log line.

---------

Co-authored-by: Jared Allard <jaredallard@users.noreply.github.com>
This commit is contained in:
oxmc
2023-11-17 14:45:43 -08:00
committed by GitHub
parent 2b4abb1b13
commit 175bbf13fe
+1 -1
View File
@@ -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)