diff options
| author | Jack Nagel | 2014-12-12 22:27:34 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-12-12 22:31:15 -0500 |
| commit | d91d56555c08d5077fffdcbbd44b4f2b645a0d24 (patch) | |
| tree | 91cb426fb47b4a79af6c3a397b1c98cdc254c97d /Library | |
| parent | 997a3b521212f62004f4b561af20049daeb9876f (diff) | |
| download | brew-d91d56555c08d5077fffdcbbd44b4f2b645a0d24.tar.bz2 | |
Formula#install has public visibility
It is called with an explicit receiver in build.rb, so the base class
method should also be public.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index f3a8cbfbd..463bd8d9d 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -576,11 +576,11 @@ class Formula HOMEBREW_LIBRARY.join("Homebrew", "test", "fixtures", file) end - protected - def install end + protected + # Pretty titles the command and buffers stdout/stderr # Throws if there's an error def system cmd, *args |
