diff options
| author | Louis Bergelson | 2017-11-28 17:34:16 -0500 |
|---|---|---|
| committer | Louis Bergelson | 2017-11-28 17:34:16 -0500 |
| commit | 2abf2a6a79459694c41b1198cb9ad48810206f64 (patch) | |
| tree | e1a0ded27beb055af24eccc72f695f1aa45d77c4 /Library | |
| parent | c8ef8ceadcaaa4c933b58c00c12bac53cd1b27f8 (diff) | |
| download | brew-2abf2a6a79459694c41b1198cb9ad48810206f64.tar.bz2 | |
whitelisting additional SentinelOne dylib pattern
it seems like SentinelOne is now using dylibs that include a number, possibly randomized in some way
this causes brew doctor to give a warning, but it should probably be ignored like the previous versions of the sentinel dylib
updating diagnostic.rb to include a new pattern to ignore dylibs of the form sentinel-*.dylib
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/diagnostic.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/diagnostic.rb b/Library/Homebrew/diagnostic.rb index e1b1bb8ee..61f9b53a3 100644 --- a/Library/Homebrew/diagnostic.rb +++ b/Library/Homebrew/diagnostic.rb @@ -180,6 +180,7 @@ module Homebrew "libecomlodr.dylib", # Symantec Endpoint Protection "libsymsea*.dylib", # Symantec Endpoint Protection "sentinel.dylib", # SentinelOne + "sentinel-*.dylib", # SentinelOne ] __check_stray_files "/usr/local/lib", "*.dylib", white_list, <<~EOS |
