From 7c9dff1f1ee34e5dac6d031cf167fdc07ccd86bf Mon Sep 17 00:00:00 2001 From: Xu Cheng Date: Sat, 20 Feb 2016 19:28:59 +0800 Subject: plist_caveats: ensure it ending with newline Closes Homebrew/homebrew#49374. Signed-off-by: Xu Cheng --- Library/Homebrew/caveats.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library') diff --git a/Library/Homebrew/caveats.rb b/Library/Homebrew/caveats.rb index 298825adb..63084af03 100644 --- a/Library/Homebrew/caveats.rb +++ b/Library/Homebrew/caveats.rb @@ -212,6 +212,6 @@ class Caveats s << "" << "WARNING: launchctl will fail when run under tmux." if ENV["TMUX"] end - s.join("\n") unless s.empty? + s.join("\n") + "\n" unless s.empty? end end -- cgit v1.2.3