diff options
| author | JCount | 2017-05-21 01:48:58 -0400 |
|---|---|---|
| committer | JCount | 2017-05-21 12:00:56 -0400 |
| commit | aa81f5635648383b0245bc791edc3b9668a02829 (patch) | |
| tree | 41619ff4cbfa322817cc5d0c504ffcd058f92c89 /Library | |
| parent | 7000f50d5f79cb9c6b1e2d53a0cc9ec8283fd3ec (diff) | |
| download | brew-aa81f5635648383b0245bc791edc3b9668a02829.tar.bz2 | |
audit: fix versioned alias errors in homebrew/core introduced in a7c6a57
This fixes #2657 which in turn were caused by an oversight in #2664
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/dev-cmd/audit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb index 3c42b45a1..3ad24154c 100644 --- a/Library/Homebrew/dev-cmd/audit.rb +++ b/Library/Homebrew/dev-cmd/audit.rb @@ -323,7 +323,7 @@ class FormulaAuditor end valid_alias_names = [alias_name_major, alias_name_major_minor] - if formula.tap + if formula.tap && !formula.tap.core_tap? valid_alias_names.map! { |a| "#{formula.tap}/#{a}" } end |
