From 6201f017222c31c7119c66120167ac9e5d8991c7 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Sun, 2 Oct 2016 08:40:38 +0200 Subject: [PATCH] Fix `Tty.gray`. --- Library/Homebrew/dev-cmd/bottle.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/dev-cmd/bottle.rb b/Library/Homebrew/dev-cmd/bottle.rb index 6a16deef48..b62af1044a 100644 --- a/Library/Homebrew/dev-cmd/bottle.rb +++ b/Library/Homebrew/dev-cmd/bottle.rb @@ -70,7 +70,7 @@ module Homebrew if ARGV.verbose? print_filename.call(string, file) unless linked_libraries.empty? linked_libraries.each do |lib| - puts " #{Tty.gray}-->#{Tty.reset} links to #{lib}" + puts " #{Tty.bold}-->#{Tty.reset} links to #{lib}" end end @@ -93,7 +93,7 @@ module Homebrew next unless ARGV.verbose? && !text_matches.empty? print_filename.call(string, file) text_matches.first(MAXIMUM_STRING_MATCHES).each do |match, offset| - puts " #{Tty.gray}-->#{Tty.reset} match '#{match}' at offset #{Tty.bold}0x#{offset}#{Tty.reset}" + puts " #{Tty.bold}-->#{Tty.reset} match '#{match}' at offset #{Tty.bold}0x#{offset}#{Tty.reset}" end if text_matches.size > MAXIMUM_STRING_MATCHES