aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-02-20 13:31:05 -0500
committerJack Nagel2014-02-20 13:31:37 -0500
commit3aa06a701d2752df874df43cd6ebea618e3e187e (patch)
treec309fba3a0742d54e991be5eb1d1cf125edb59c0 /Library
parentabbed076f091e6420734bda094dc13527f4e1620 (diff)
downloadbrew-3aa06a701d2752df874df43cd6ebea618e3e187e.tar.bz2
Consistently pass path into Formula constructor
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formulary.rb2
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