diff options
| author | Jack Nagel | 2013-10-19 21:25:31 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2013-10-19 21:30:20 -0500 | 
| commit | 1780e2bac8a540653bd100dec5f4cd88aa673fe1 (patch) | |
| tree | d7fbccc3955af4361615d598e26871208f5c3116 /Library/Homebrew/formula_cellar_checks.rb | |
| parent | 21f2f183285446f1252273e0da2c3028734650bf (diff) | |
| download | homebrew-1780e2bac8a540653bd100dec5f4cd88aa673fe1.tar.bz2 | |
Fix truncation of printed paths in cellar audits
Diffstat (limited to 'Library/Homebrew/formula_cellar_checks.rb')
| -rw-r--r-- | Library/Homebrew/formula_cellar_checks.rb | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/formula_cellar_checks.rb b/Library/Homebrew/formula_cellar_checks.rb index 97bc736c4..7c975f6e7 100644 --- a/Library/Homebrew/formula_cellar_checks.rb +++ b/Library/Homebrew/formula_cellar_checks.rb @@ -51,7 +51,7 @@ module FormulaCellarChecks          install to "libexec" and then symlink or wrap binaries into "bin".          See "activemq", "jruby", etc. for examples.          The offending files are: -        #{jars * "\n"} +          #{jars * "\n          "}        EOS      ]    end @@ -71,7 +71,7 @@ module FormulaCellarChecks        <<-EOS.undent          Installing non-libraries to "lib" is bad practice.          The offending files are: -        #{non_libraries * "\n"} +          #{non_libraries * "\n          "}        EOS      ]    end @@ -85,7 +85,7 @@ module FormulaCellarChecks      ["Non-executables were installed to \"#{bin}\".",        <<-EOS.undent          The offending files are: -        #{non_exes * "\n"} +          #{non_exes * "\n          "}        EOS      ]    end  | 
