Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(install): use full names for linked and keg_only checks
Minimal repro: ```console ❯ brew bundle --file - <<<'tap "gibfahn/tap", "https://github.com/gibfahn/homebrew-tap" tap "gibfahn/tap2", "https://github.com/gibfahn/homebrew-tap" brew "gibfahn/tap/check-sieve"' Using gibfahn/tap Using gibfahn/tap2 Using gibfahn/tap/check-sieve Error: Formulae found in multiple taps: * gibfahn/tap/check-sieve * gibfahn/tap2/check-sieve Please use the fully-qualified name (e.g. gibfahn/tap/check-sieve) to refer to a specific formula. ``` If you run with `HOMEBREW_DEBUG=1` you can see that the cause of this is using the `@name` rather than the `@full_name` in the checks run after the installation is complete.
- Loading branch information