From b55528b825b2d9d2ed1596c7c2ad865f432051fc Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Sun, 14 Jul 2024 23:15:36 -0400 Subject: [PATCH] Color status. --- Library/Homebrew/cmd/fetch.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/fetch.rb b/Library/Homebrew/cmd/fetch.rb index 15eecf70b7..d135692f13 100644 --- a/Library/Homebrew/cmd/fetch.rb +++ b/Library/Homebrew/cmd/fetch.rb @@ -203,10 +203,10 @@ module Homebrew promise.wait! - Whirly.configure stop: "✔︎" + Whirly.configure stop: "#{Tty.green}✔︎#{Tty.reset}" Whirly.stop if args.concurrency rescue ChecksumMismatchError => e - Whirly.configure stop: "✘" + Whirly.configure stop: "#{Tty.red}✘#{Tty.reset}" Whirly.stop if args.concurrency opoo "#{downloadable.download_type.capitalize} reports different checksum: #{e.expected}"