From 86b3090d4d8a73736f0e303633742d81ab01b5c4 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 19 Jul 2014 23:59:43 -0500 Subject: [PATCH] Passing an empty array to puts prints nothing --- Library/Homebrew/utils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index b877be1ba8..6f2d10aeb4 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -45,7 +45,7 @@ end def ohai title, *sput title = Tty.truncate(title) if $stdout.tty? && !ARGV.verbose? puts "#{Tty.blue}==>#{Tty.white} #{title}#{Tty.reset}" - puts sput unless sput.empty? + puts sput end def oh1 title