aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2017-01-26 15:18:32 +0000
committerMike McQuaid2017-01-26 15:18:32 +0000
commit7a2c5c0f2f91bf9e09d9eca993df0a4ec34a8f7b (patch)
tree8f9e4d1a5ae3220b8210945b9b3d87e501df45d0 /Library
parent1f97e3186a117541f127f6e52ce77238a2791147 (diff)
downloadbrew-7a2c5c0f2f91bf9e09d9eca993df0a4ec34a8f7b.tar.bz2
caveats: add newline after keg only reason.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/caveats.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/caveats.rb b/Library/Homebrew/caveats.rb
index d051a7ca7..f5543cf49 100644
--- a/Library/Homebrew/caveats.rb
+++ b/Library/Homebrew/caveats.rb
@@ -47,7 +47,7 @@ class Caveats
return unless f.keg_only?
s = "This formula is keg-only, which means it was not symlinked into #{HOMEBREW_PREFIX}."
- s << "\n\n#{f.keg_only_reason}"
+ s << "\n\n#{f.keg_only_reason}\n"
if f.bin.directory? || f.sbin.directory?
s << "\nIf you need to have this software first in your PATH run:\n"
if f.bin.directory?