From d91d56555c08d5077fffdcbbd44b4f2b645a0d24 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Fri, 12 Dec 2014 22:27:34 -0500 Subject: [PATCH] Formula#install has public visibility It is called with an explicit receiver in build.rb, so the base class method should also be public. --- Library/Homebrew/formula.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index f3a8cbfbd1..463bd8d9d3 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