diff --git a/Library/Homebrew/keg.rb b/Library/Homebrew/keg.rb index d40b53d99d..edf82a71de 100644 --- a/Library/Homebrew/keg.rb +++ b/Library/Homebrew/keg.rb @@ -4,12 +4,6 @@ require "formula_lock" require "ostruct" class Keg < Pathname - def initialize path - super path - raise "#{to_s} is not a valid keg" unless parent.parent.realpath == HOMEBREW_CELLAR.realpath - raise "#{to_s} is not a directory" unless directory? - end - # locale-specific directories have the form language[_territory][.codeset][@modifier] LOCALEDIR_RX = /(locale|man)\/([a-z]{2}|C|POSIX)(_[A-Z]{2})?(\.[a-zA-Z\-0-9]+(@.+)?)?/ INFOFILE_RX = %r[info/([^.].*?\.info|dir)$] @@ -40,6 +34,12 @@ class Keg < Pathname raise NotAKegError, "#{path} is not inside a keg" end + def initialize path + super path + raise "#{to_s} is not a valid keg" unless parent.parent.realpath == HOMEBREW_CELLAR.realpath + raise "#{to_s} is not a directory" unless directory? + end + def uninstall rmtree parent.rmdir_if_possible