aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-06-13 09:34:27 -0700
committerAdam Vandenberg2013-06-13 09:34:43 -0700
commit313134fbe361acbf474a5ad9f507e230f70ff4ae (patch)
tree2e786cae14e7a97691c69959c6530a8e456f1c25 /Library
parentfc649af17afe2aa54435710c7e82f6b5363c8d09 (diff)
downloadbrew-313134fbe361acbf474a5ad9f507e230f70ff4ae.tar.bz2
ScriptFileFormula: remove override warning
Closes Homebrew/homebrew#20445.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_specialties.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/Library/Homebrew/formula_specialties.rb b/Library/Homebrew/formula_specialties.rb
index e91c02dc0..2529243b2 100644
--- a/Library/Homebrew/formula_specialties.rb
+++ b/Library/Homebrew/formula_specialties.rb
@@ -5,14 +5,6 @@ class ScriptFileFormula < Formula
def install
bin.install Dir['*']
end
-
- def self.method_added method
- super method
- case method
- when :install
- opoo "#{name}: if you are overriding ScriptFileFormula#install, use a Formula instead"
- end
- end
end
# See browser for an example