diff options
Diffstat (limited to 'Library/Homebrew/diagnostic.rb')
| -rw-r--r-- | Library/Homebrew/diagnostic.rb | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Library/Homebrew/diagnostic.rb b/Library/Homebrew/diagnostic.rb index fbc10fe20..e499c4d3b 100644 --- a/Library/Homebrew/diagnostic.rb +++ b/Library/Homebrew/diagnostic.rb @@ -86,12 +86,17 @@ module Homebrew def development_tools_checks %w[ check_for_installed_developer_tools - ] + ].freeze end def fatal_development_tools_checks %w[ - ] + ].freeze + end + + def build_error_checks + (development_tools_checks + %w[ + ]).freeze end def check_for_installed_developer_tools @@ -172,6 +177,7 @@ module Homebrew "libUFSDExtFS.dylib", # Paragon ExtFS "libecomlodr.dylib", # Symantec Endpoint Protection "libsymsea.*.dylib", # Symantec Endpoint Protection + "sentinel.dylib", # SentinelOne ] __check_stray_files "/usr/local/lib", "*.dylib", white_list, <<-EOS.undent |
