brew/Library/Homebrew/extend/os/linux/software_spec.rb
Douglas Eichelberger 24cf6076e8 brew style --fix
2023-04-24 20:42:39 -07:00

10 lines
204 B
Ruby

# typed: strict
# frozen_string_literal: true
class BottleSpecification
sig { params(tag: Utils::Bottles::Tag).returns(T::Boolean) }
def skip_relocation?(tag: Utils::Bottles.tag)
false
end
end