From 87605d534bd75151df532f507f4bd10d3225aeed Mon Sep 17 00:00:00 2001 From: Max Howell Date: Sat, 5 Sep 2009 14:31:17 +0100 Subject: [PATCH] Don't trim ohai message in verbose mode --- Library/Homebrew/utils.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index f14f017dcb..3c6a8e12cf 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -25,6 +25,7 @@ def ohai title, *args return if args.length > 0 and args[0].nil? n=`tput cols`.strip.to_i-4 + n=title.length if ARGV.verbose? puts "\033[0;34m==>\033[0;0;1m #{title[0,n]}\033[0;0m" args.each do |arg| return if arg.nil?