aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/utils.rb
diff options
context:
space:
mode:
authorJack Nagel2014-07-19 23:59:43 -0500
committerJack Nagel2014-07-19 23:59:44 -0500
commit134ce96eea57ffc80744b0962a8e1d898ae14ffe (patch)
tree12c1484c330ecc3301734e996fcc18dfec68ad91 /Library/Homebrew/utils.rb
parent90ce7957e6fcec7c68ed7549c8d709dbd33fab4c (diff)
downloadhomebrew-134ce96eea57ffc80744b0962a8e1d898ae14ffe.tar.bz2
Passing an empty array to puts prints nothing
Diffstat (limited to 'Library/Homebrew/utils.rb')
-rw-r--r--Library/Homebrew/utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb
index b877be1ba..6f2d10aeb 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