From 0df28dc46e37327b5f4b9f01747765082187ff5d Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 11 Jun 2024 11:34:01 +0000 Subject: [PATCH] docs: updates from Homebrew/brew --- docs/Homebrew/Diagnostic/Checks.html | 48 +++++++++++++++------------- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/docs/Homebrew/Diagnostic/Checks.html b/docs/Homebrew/Diagnostic/Checks.html index f4ca941ca..679cf6dbf 100644 --- a/docs/Homebrew/Diagnostic/Checks.html +++ b/docs/Homebrew/Diagnostic/Checks.html @@ -2392,12 +2392,12 @@
-1038 1039 -1040+1040 +1041
# File 'diagnostic.rb', line 1038 +# File 'diagnostic.rb', line 1039 def all methods.map(&:to_s).grep(/^check_/).sort @@ -2610,12 +2610,12 @@
-1042 1043 -1044+1044 +1045
# File 'diagnostic.rb', line 1042 +# File 'diagnostic.rb', line 1043 def cask_checks all.grep(/^check_cask_/) @@ -2933,7 +2933,6 @@
-972 973 974 975 @@ -2956,10 +2955,11 @@+995 +996992 993 994 -995
# File 'diagnostic.rb', line 972 +# File 'diagnostic.rb', line 973 def check_cask_environment_variables environment_variables = %w[ @@ -3073,16 +3073,16 @@
-964 965 966 967 968 969 -970+970 +971
# File 'diagnostic.rb', line 964 +# File 'diagnostic.rb', line 965 def check_cask_load_path paths = $LOAD_PATH.map { user_tilde(_1) } @@ -3125,7 +3125,6 @@
-1025 1026 1027 1028 @@ -3136,10 +3135,11 @@+1036 +10371033 1034 1035 -1036
# File 'diagnostic.rb', line 1025 +# File 'diagnostic.rb', line 1026 def check_cask_quarantine_support case Cask::Quarantine.check_quarantine_support @@ -3356,7 +3356,8 @@+962 +963959 960 961 -962
# File 'diagnostic.rb', line 943 @@ -3366,7 +3367,7 @@taps = (Tap.to_a + [CoreCaskTap.instance]).uniq - add_info "Homebrew Cask Taps:", taps.filter_map do |tap| + taps_info = taps.filter_map do |tap| cask_count = begin tap.cask_files.count rescue @@ -3377,6 +3378,7 @@
"#{tap.path} (#{Utils.pluralize("cask", cask_count, include_count: true)})" end + add_info "Homebrew Cask Taps:", taps_info taps_string = Utils.pluralize("tap", error_tap_paths.count) "Unable to read from cask #{taps_string}: #{error_tap_paths.to_sentence}" if error_tap_paths.present? @@ -3415,7 +3417,6 @@
-997 998 999 1000 @@ -3441,10 +3442,11 @@+1023 +10241020 1021 1022 -1023
# File 'diagnostic.rb', line 997 +# File 'diagnostic.rb', line 998 def check_cask_xattr result = system_command "/usr/bin/xattr", args: ["-h"] @@ -8005,12 +8007,12 @@
-1046 1047 -1048+1048 +1049
# File 'diagnostic.rb', line 1046 +# File 'diagnostic.rb', line 1047 def current_user ENV.fetch("USER", "$(whoami)")