diff options
| author | Jack Nagel | 2014-02-20 13:31:05 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-02-20 13:31:37 -0500 |
| commit | 3aa06a701d2752df874df43cd6ebea618e3e187e (patch) | |
| tree | c309fba3a0742d54e991be5eb1d1cf125edb59c0 /Library | |
| parent | abbed076f091e6420734bda094dc13527f4e1620 (diff) | |
| download | brew-3aa06a701d2752df874df43cd6ebea618e3e187e.tar.bz2 | |
Consistently pass path into Formula constructor
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formulary.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb index 8066e0181..7fb7191a5 100644 --- a/Library/Homebrew/formulary.rb +++ b/Library/Homebrew/formulary.rb @@ -80,7 +80,7 @@ class Formulary end def get_formula - formula = klass.new(name) + formula = klass.new(name, path) formula.local_bottle_path = @bottle_filename return formula end |
