From 72f7ab8bfc9fe8aeb7e216c7642c69b1ba65adc1 Mon Sep 17 00:00:00 2001 From: Carlo Cabrera <30379873+carlocab@users.noreply.github.com> Date: Sun, 10 Oct 2021 14:16:10 +0800 Subject: [PATCH] formula_cellar_checks: fix alignment when listing files The extra spacing came from before we used squiggly heredocs. Now that we do, they're no longer necessary, and produce misaligned output. --- Library/Homebrew/formula_cellar_checks.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb index 75e2108cf1..c40ab91788 100644 --- a/Library/Homebrew/formula_cellar_checks.rb +++ b/Library/Homebrew/formula_cellar_checks.rb @@ -59,7 +59,7 @@ module FormulaCellarChecks 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 @@ -84,7 +84,7 @@ module FormulaCellarChecks 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 @@ -114,7 +114,7 @@ module FormulaCellarChecks Homebrew suggests that this software is installed to "libexec" and then symlinked as needed. The offending files are: - #{generics * "\n "} + #{generics * "\n "} EOS end @@ -127,7 +127,7 @@ module FormulaCellarChecks 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 @@ -165,7 +165,7 @@ module FormulaCellarChecks They should instead be installed into: #{share}/emacs/site-lisp/#{name} The offending files are: - #{elisps * "\n "} + #{elisps * "\n "} EOS end @@ -199,9 +199,9 @@ module FormulaCellarChecks <<~EOS Packages have been installed for: - #{pythons * "\n "} + #{pythons * "\n "} but this formula depends on: - #{python_deps * "\n "} + #{python_deps * "\n "} EOS end