mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
Fix Cask::Quarantine
class methods on Linux
This commit is contained in:
parent
ff79015373
commit
2a7fbd00a9
@ -10,13 +10,13 @@ module OS
|
|||||||
requires_ancestor { ::Cask::Quarantine }
|
requires_ancestor { ::Cask::Quarantine }
|
||||||
|
|
||||||
sig { returns(Symbol) }
|
sig { returns(Symbol) }
|
||||||
def self.check_quarantine_support = :linux
|
def check_quarantine_support = :linux
|
||||||
|
|
||||||
sig { returns(T::Boolean) }
|
sig { returns(T::Boolean) }
|
||||||
def self.available? = false
|
def available? = false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Cask::Quarantine.prepend(OS::Linux::Cask::Quarantine)
|
Cask::Quarantine.singleton_class.prepend(OS::Linux::Cask::Quarantine)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user