brew/Library/Homebrew/extend/os/linux/software_spec.rb
2021-09-20 15:02:05 +01:00

12 lines
221 B
Ruby

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