diff options
| author | Jack Nagel | 2014-07-19 23:59:43 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-07-19 23:59:44 -0500 | 
| commit | 134ce96eea57ffc80744b0962a8e1d898ae14ffe (patch) | |
| tree | 12c1484c330ecc3301734e996fcc18dfec68ad91 /Library/Homebrew/utils.rb | |
| parent | 90ce7957e6fcec7c68ed7549c8d709dbd33fab4c (diff) | |
| download | homebrew-134ce96eea57ffc80744b0962a8e1d898ae14ffe.tar.bz2 | |
Passing an empty array to puts prints nothing
Diffstat (limited to 'Library/Homebrew/utils.rb')
| -rw-r--r-- | Library/Homebrew/utils.rb | 2 | 
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  | 
