mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
10 lines
196 B
Ruby
10 lines
196 B
Ruby
require_relative "uncompressed"
|
|
|
|
module UnpackStrategy
|
|
class Executable < Uncompressed
|
|
def self.can_extract?(path:, magic_number:)
|
|
magic_number.match?(/\A#!\s*\S+/n)
|
|
end
|
|
end
|
|
end
|