dev-cmd/bump: handle no formula tap case.

Fixes https://github.com/Homebrew/brew/issues/16913
This commit is contained in:
Mike McQuaid 2024-03-19 08:52:28 +00:00
parent e3797d39bd
commit d3ea535a9a
No known key found for this signature in database

View File

@ -240,7 +240,7 @@ module Homebrew
name = formula_or_cask.token
text = "Cask is disabled.\n"
end
unless formula_or_cask.tap.allow_bump?(name)
if (tap = formula_or_cask.tap) && !tap.allow_bump?(name)
skip = true
text = "#{text.split.first} is on autobump list.\n"
end