mirror of
https://github.com/Homebrew/brew.git
synced 2026-08-12 22:29:27 +04:00
12 lines
191 B
Ruby
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
|