diff options
| author | Jack Nagel | 2014-07-07 21:32:35 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-07-07 21:32:35 -0500 |
| commit | dff74d9c6740428066c18c2c5644362f72642501 (patch) | |
| tree | 442fef293aae139721508125fecfe163abbce52a /Library | |
| parent | 9822faa56a1f99ab97b6e44bccf363c005172197 (diff) | |
| download | brew-dff74d9c6740428066c18c2c5644362f72642501.tar.bz2 | |
Don't set @env on instances
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 2 | ||||
| -rw-r--r-- | Library/Homebrew/requirement.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index f7950bff0..3b126a3b8 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -408,7 +408,7 @@ class Formula end def env - @env ||= self.class.env + self.class.env end def conflicts diff --git a/Library/Homebrew/requirement.rb b/Library/Homebrew/requirement.rb index b4cfa88c6..796dc4f3b 100644 --- a/Library/Homebrew/requirement.rb +++ b/Library/Homebrew/requirement.rb @@ -55,7 +55,7 @@ class Requirement end def env - @env ||= self.class.env + self.class.env end def eql?(other) |
