diff options
| author | Jack Nagel | 2012-02-18 20:46:52 -0600 |
|---|---|---|
| committer | Jack Nagel | 2012-02-18 20:49:51 -0600 |
| commit | 71b10a04ce4a389e8f2c9e11cf58c98492e5a39e (patch) | |
| tree | 3c008775cd0ae15a73b2dfe1b450e1ecc5b82b46 | |
| parent | 349f0b75f195b3583e435de2371754270e38ffe7 (diff) | |
| download | homebrew-71b10a04ce4a389e8f2c9e11cf58c98492e5a39e.tar.bz2 | |
audit: use a heredoc for this long line
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rwxr-xr-x | Library/Homebrew/cmd/audit.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index 644a08b18..6f7a9fa1d 100755 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -281,7 +281,10 @@ def audit_formula_instance f case d when "git", "python", "ruby", "emacs", "mysql", "postgresql", "mercurial" - problems << " * Don't use #{d} as a dependency; we allow non-Homebrew\n #{d} installs." + problems << <<-EOS + * Don't use #{d} as a dependency. We allow non-Homebrew + #{d} installations. +EOS end end |
