Skip to content

Commit

Permalink
[tools/installer] node_install_npm is string
Browse files Browse the repository at this point in the history
  • Loading branch information
indutny committed Dec 17, 2011
1 parent c570307 commit 5a31da5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/installer.js
Expand Up @@ -95,7 +95,7 @@ if (cmd === 'install') {
copy('out/Release/node', 'bin/node');

// Install npm (eventually)
if (variables.node_install_npm) {
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 ' +
path.join(node_prefix, 'bin/npm'));
Expand Down

0 comments on commit 5a31da5

Please sign in to comment.