Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Library/Homebrew/formula_cellar_checks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def check_jars
install to "libexec" and then symlink or wrap binaries into "bin".
See formulae 'activemq', 'jruby', etc. for examples.
The offending files are:
#{jars * "\n "}
#{jars * "\n "}
EOS
end

Expand All @@ -84,7 +84,7 @@ def check_non_libraries
Non-libraries were installed to "#{formula.lib}".
Installing non-libraries to "lib" is discouraged.
The offending files are:
#{non_libraries * "\n "}
#{non_libraries * "\n "}
EOS
end

Expand Down Expand Up @@ -114,7 +114,7 @@ def check_generic_executables(bin)
Homebrew suggests that this software is installed to "libexec" and then
symlinked as needed.
The offending files are:
#{generics * "\n "}
#{generics * "\n "}
EOS
end

Expand All @@ -127,7 +127,7 @@ def check_easy_install_pth(lib)
These '.pth' files are likely to cause link conflicts.
Please invoke `setup.py` using 'Language::Python.setup_install_args'.
The offending files are:
#{pth_found * "\n "}
#{pth_found * "\n "}
EOS
end

Expand Down Expand Up @@ -165,7 +165,7 @@ def check_elisp_root(share, name)
They should instead be installed into:
#{share}/emacs/site-lisp/#{name}
The offending files are:
#{elisps * "\n "}
#{elisps * "\n "}
EOS
end

Expand Down Expand Up @@ -199,9 +199,9 @@ def check_python_packages(lib, deps)

<<~EOS
Packages have been installed for:
#{pythons * "\n "}
#{pythons * "\n "}
but this formula depends on:
#{python_deps * "\n "}
#{python_deps * "\n "}
EOS
end

Expand Down