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

10 lines
301 B
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: strict
# frozen_string_literal: true
# This logic will need to be more nuanced if this file includes more than `uses_from_macos`.
2021-03-03 00:30:40 +00:00
if OS.mac? || Homebrew::EnvConfig.simulate_macos_on_linux?
require "extend/os/mac/software_spec"
elsif OS.linux?
require "extend/os/linux/software_spec"
end