Skip to content

Commit

Permalink
log: add missing space between name and nodedir
Browse files Browse the repository at this point in the history
  • Loading branch information
George Adams committed Jan 9, 2017
1 parent 26edb2d commit 7299c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/npm/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7299c33

Please sign in to comment.