cmd/doctor: respect --quiet

This commit is contained in:
Branch Vincent 2023-02-05 15:06:26 -08:00
parent b3a71ba7cd
commit 8db571e4b0
No known key found for this signature in database
GPG Key ID: AE66FEB122C01EDC

View File

@ -78,6 +78,6 @@ module Homebrew
first_warning = false
end
puts "Your system is ready to brew." unless Homebrew.failed?
puts "Your system is ready to brew." if !Homebrew.failed? && !args.quiet?
end
end