From 3aa06a701d2752df874df43cd6ebea618e3e187e Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Thu, 20 Feb 2014 13:31:05 -0500 Subject: [PATCH] Consistently pass path into Formula constructor --- Library/Homebrew/formulary.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb index 8066e01812..7fb7191a59 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