build: fix npm-cli.js install

This commit is contained in:
Ben Noordhuis 2012-01-04 16:36:08 +01:00
parent 557fc396b4
commit e21643d618
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ if (cmd === 'install') {
// Install npm (eventually)
if (variables.node_install_npm == 'true') {
copy('deps/npm', 'lib/node_modules/npm');
queue.push('ln -sF ../lib/node_modules/npm/bin/npm-cli.js ' +
queue.push('ln -sf ../lib/node_modules/npm/bin/npm-cli.js ' +
path.join(node_prefix, 'bin/npm'));
}
} else {