Files
brew/Library/Homebrew/extend/os/mac/unpack_strategy/dmg.rb
T
2026-08-03 13:02:07 -07:00

12 lines
191 B
Ruby

# typed: strict
# frozen_string_literal: true
module UnpackStrategy
class Dmg
sig { returns(T::Boolean) }
def self.diskutil_image?
MacOS.version >= :sonoma
end
end
end