Skip to content
Snippets Groups Projects
Commit f9fe5b67 authored by Mike McQuaid's avatar Mike McQuaid
Browse files

test-bot: handle missing tap in exception.

Handle the case where a `FormulaUnavailableError` does not contain a tap
reference so fall back to `CoreTap` in this case.
parent d1ba4f44
No related branches found
No related tags found
No related merge requests found
......@@ -248,8 +248,9 @@ module Homebrew
def safe_formula_canonical_name(formula_name)
Formulary.factory(formula_name).full_name
rescue TapFormulaUnavailableError, FormulaUnavailableError => e
raise if e.tap.installed?
test "brew", "tap", e.tap.name
exception_tap = e.tap || CoreTap.instance
raise if exception_tap.installed?
test "brew", "tap", exception_tap.name
retry unless steps.last.failed?
onoe e
puts e.backtrace
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment