Merge pull request #14515 from branchvincent/quiet-doctor

cmd/doctor: respect `--quiet`
This commit is contained in:
Mike McQuaid 2023-02-06 15:39:21 +01:00 committed by GitHub
commit c53f957819
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,6 +78,6 @@ module Homebrew
first_warning = false first_warning = false
end 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
end end