diff options
| author | Jack Nagel | 2014-12-12 22:27:34 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-12-12 22:31:15 -0500 |
| commit | ddf1387eda3dd7e9fefffa3820d044ef83689bc8 (patch) | |
| tree | a88c65fe82f22879950aeffa923b3c83714c64a6 | |
| parent | 7b340ce1549dee2be85771de46df780d319e7865 (diff) | |
| download | homebrew-ddf1387eda3dd7e9fefffa3820d044ef83689bc8.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.
| -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 |
