From e21643d618a923a484b1f692ceeabffa6855e6cf Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 4 Jan 2012 16:36:08 +0100 Subject: [PATCH] build: fix npm-cli.js install --- tools/installer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/installer.js b/tools/installer.js index dfda42b4231..f4a07c52184 100644 --- a/tools/installer.js +++ b/tools/installer.js @@ -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 {