From 7299c3336248c03bd5e78e3b6b268edb528480a3 Mon Sep 17 00:00:00 2001 From: George Adams Date: Mon, 9 Jan 2017 22:51:59 +0000 Subject: [PATCH] log: add missing space between name and nodedir --- lib/npm/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/npm/install.js b/lib/npm/install.js index 5f0ff4066..785f94650 100644 --- a/lib/npm/install.js +++ b/lib/npm/install.js @@ -29,7 +29,7 @@ function install(context, next) { nodedir = nodedir.replace(/\\/g, '\\\\'); } args.push('--nodedir="' + nodedir + '"'); - context.emit('data', 'verbose', context.module.name + 'nodedir', 'Using --nodedir="' + nodedir + '"'); + context.emit('data', 'verbose', context.module.name + ' nodedir', 'Using --nodedir="' + nodedir + '"'); } var proc = spawn('npm', args, options);