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

Commit

Permalink
add default of {} for conf for direct installs
Browse files Browse the repository at this point in the history
otherwise $ component install foo/bar
fails
  • Loading branch information
tj committed Oct 10, 2012
1 parent 6dc0d57 commit 1b7ea04
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/component-install
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ var program = require('commander')
, component = require('..') , component = require('..')
, utils = component.utils , utils = component.utils
, log = utils.log , log = utils.log
, path = require('path'); , path = require('path')
, conf = {};


// options // options


Expand Down

0 comments on commit 1b7ea04

Please sign in to comment.