diff --git a/Library/Homebrew/extend/os/unpack_strategy/zip.rb b/Library/Homebrew/extend/os/unpack_strategy/zip.rb new file mode 100644 index 0000000000..007300b114 --- /dev/null +++ b/Library/Homebrew/extend/os/unpack_strategy/zip.rb @@ -0,0 +1,4 @@ +# typed: strict +# frozen_string_literal: true + +require "extend/os/mac/unpack_strategy/zip" if OS.mac? diff --git a/Library/Homebrew/unpack_strategy/zip.rb b/Library/Homebrew/unpack_strategy/zip.rb index 6f8e6f7426..c8925c96c6 100644 --- a/Library/Homebrew/unpack_strategy/zip.rb +++ b/Library/Homebrew/unpack_strategy/zip.rb @@ -49,4 +49,4 @@ module UnpackStrategy end end -require "extend/os/mac/unpack_strategy/zip" if OS.mac? +require "extend/os/unpack_strategy/zip"