diff options
| author | Markus Reiter | 2016-08-26 14:14:18 +0200 |
|---|---|---|
| committer | Markus Reiter | 2016-08-26 14:14:18 +0200 |
| commit | db88ca1e1871df380a6408dadc2bdb81a4b25f3e (patch) | |
| tree | 53bd25ae3fef0c2a83bdeddc64cdf84d57c8a0ec /Library/Homebrew/cask/lib | |
| parent | 48ac15180c01c9038125aec25fd059ab60579e8c (diff) | |
| download | brew-db88ca1e1871df380a6408dadc2bdb81a4b25f3e.tar.bz2 | |
Fix missing `magenta` in Tty.
Diffstat (limited to 'Library/Homebrew/cask/lib')
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/utils.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/utils.rb b/Library/Homebrew/cask/lib/hbc/utils.rb index e151b0c1e..599127523 100644 --- a/Library/Homebrew/cask/lib/hbc/utils.rb +++ b/Library/Homebrew/cask/lib/hbc/utils.rb @@ -37,7 +37,7 @@ def odebug(title, *sput) if $stdout.tty? && title.to_s.length > width title = title.to_s[0, width - 3] + "..." end - puts "#{Tty.magenta}==> #{title}#{Tty.reset}" + puts "#{Tty.magenta}==>#{Tty.reset} #{Tty.white}#{title}#{Tty.reset}" puts sput unless sput.empty? end end |
