2020-10-10 14:16:11 +02:00
|
|
|
# typed: strict
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2021-03-03 00:13:50 +00:00
|
|
|
# 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?
|
2020-11-09 16:26:09 +00:00
|
|
|
require "extend/os/mac/software_spec"
|
2021-03-03 00:13:50 +00:00
|
|
|
elsif OS.linux?
|
|
|
|
require "extend/os/linux/software_spec"
|
2019-05-24 21:36:48 -03:00
|
|
|
end
|