2020-10-10 14:16:11 +02:00
|
|
|
# typed: strict
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-11-09 15:23:35 +00:00
|
|
|
# This logic will need to be more nuanced if this file includes more than `uses_from_macos`.
|
|
|
|
if OS.mac? || Homebrew::EnvConfig.force_homebrew_on_linux?
|
2019-05-24 21:36:48 -03:00
|
|
|
require "extend/os/mac/software_spec"
|
2020-11-09 15:23:35 +00:00
|
|
|
elsif OS.linux?
|
|
|
|
require "extend/os/linux/software_spec"
|
2019-05-24 21:36:48 -03:00
|
|
|
end
|