mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
14 lines
213 B
Ruby
14 lines
213 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative "directory"
|
|
|
|
module UnpackStrategy
|
|
class Cvs < Directory
|
|
using Magic
|
|
|
|
def self.can_extract?(path)
|
|
super && (path/"CVS").directory?
|
|
end
|
|
end
|
|
end
|