Skip to content
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.

Commit

Permalink
re-add install proxy
Browse files Browse the repository at this point in the history
feel like removing this and using a .componentrc file…
  • Loading branch information
jonathanong committed Apr 5, 2014
1 parent 1d5314f commit fa1746d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions bin/component-install
Expand Up @@ -9,6 +9,7 @@ var program = require('commander');
program program
.usage('[name ...]') .usage('[name ...]')
.option('-d, --dev', 'install development dependencies') .option('-d, --dev', 'install development dependencies')
.option('-p, --proxy', 'use a proxy, eg. http://localhost:3128')
// .option('-p, --proxy <proxy>', 'use a proxy, eg. http://localhost:3128') // .option('-p, --proxy <proxy>', 'use a proxy, eg. http://localhost:3128')
.parse(process.argv); .parse(process.argv);


Expand Down Expand Up @@ -57,6 +58,7 @@ var hasJson = exists(jsonPath);


var options = { var options = {
development: program.dev, development: program.dev,
proxy: program.proxy,
install: true, install: true,
verbose: true, verbose: true,
}; };
Expand Down

0 comments on commit fa1746d

Please sign in to comment.