brew/Library/Homebrew/fetch.rb
2021-01-08 10:33:54 -08:00

22 lines
468 B
Ruby

# typed: true
# frozen_string_literal: true
module Homebrew
# @api private
module Fetch
extend T::Sig
sig { params(f: Formula, args: CLI::Args).returns(T::Boolean) }
def fetch_bottle?(f, args:)
bottle = f.bottle
return true if args.force_bottle? && bottle.present?
bottle.present? &&
f.pour_bottle? &&
args.build_from_source_formulae.exclude?(f.full_name) &&
bottle.compatible_locations?
end
end
end