aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/doctor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index dcdc34a42..28474baeb 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -1126,7 +1126,7 @@ module Homebrew
methods = if ARGV.named.empty?
# put slowest methods last
- checks.methods.sort << "check_for_linked_keg_only_brews" << "check_for_outdated_homebrew"
+ checks.methods.map(&:to_s).sort << "check_for_linked_keg_only_brews" << "check_for_outdated_homebrew"
else
ARGV.named
end.grep(/^check_/).reverse.uniq.reverse