* True when the binary was linked into Homebrew's install tree. Homebrew * symlinks `/opt/homebrew/bin/hyperframes` into `…/Cellar/hyperframes/ /…` * (or `/usr/local/Cellar/` on Intel). Either path wins the match.
(realEntry: string)
| 69 | * (or `/usr/local/Cellar/` on Intel). Either path wins the match. |
| 70 | */ |
| 71 | function isHomebrewInstall(realEntry: string): boolean { |
| 72 | return normalizePath(realEntry).includes("/Cellar/hyperframes/"); |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Classify the install by walking the resolved entry path against each |
no test coverage detected