Skip to content
Snippets Groups Projects
Commit 9dd7672a authored by Jack Nagel's avatar Jack Nagel
Browse files

info: re-raise on blacklist miss

parent 80a73bea
No related branches found
No related tags found
No related merge requests found
......@@ -35,8 +35,11 @@ module Homebrew extend self
info_formula Formula.factory(f)
rescue FormulaUnavailableError
# No formula with this name, try a blacklist lookup
blacklist = blacklisted?(f)
puts blacklist if blacklist
if (blacklist = blacklisted?(f))
puts blacklist
else
raise
end
end
end
end
......
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