brew/Library/Homebrew/extend/os/linux/software_spec.rb

12 lines
221 B
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: strict
# frozen_string_literal: true
class BottleSpecification
2020-10-28 18:49:10 +11:00
extend T::Sig
sig { params(tag: Utils::Bottles::Tag).returns(T::Boolean) }
def skip_relocation?(tag: Utils::Bottles.tag)
false
end
end