diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb index 04ff119a4c..f9b62ac565 100644 --- a/Library/Homebrew/extend/pathname.rb +++ b/Library/Homebrew/extend/pathname.rb @@ -355,11 +355,11 @@ class Pathname end def install_info - system '/usr/bin/install-info', '--quiet', self.to_s, (self.dirname+'dir').to_s + quiet_system "/usr/bin/install-info", "--quiet", to_s, "#{dirname}/dir" end def uninstall_info - system '/usr/bin/install-info', '--delete', '--quiet', self.to_s, (self.dirname+'dir').to_s + quiet_system "/usr/bin/install-info", "--delete", "--quiet", to_s, "#{dirname}/dir" end def find_formula