diff options
| author | Mike McQuaid | 2017-01-27 08:55:37 +0000 | 
|---|---|---|
| committer | GitHub | 2017-01-27 08:55:37 +0000 | 
| commit | e444488bfe18b722dec8fa836f477c1be21c47d8 (patch) | |
| tree | 1fe9a70236dae5a16eedf51c2e15db36cf7898d8 /Library/Homebrew | |
| parent | 858b406da15ecff8370ce77a148723fed62df5cb (diff) | |
| parent | 7a2c5c0f2f91bf9e09d9eca993df0a4ec34a8f7b (diff) | |
| download | brew-e444488bfe18b722dec8fa836f477c1be21c47d8.tar.bz2 | |
Merge pull request #1915 from MikeMcQuaid/keg-only-caveats-newline
caveats: add newline after keg only reason.
Diffstat (limited to 'Library/Homebrew')
| -rw-r--r-- | Library/Homebrew/caveats.rb | 2 | 
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?  | 
