Sean Molenaar c34b71655c feat: allow font install on linux
Apply suggestions from code review

Co-authored-by: Douglas Eichelberger <697964+dduugg@users.noreply.github.com>

feat: add linux appdir

Apply suggestions from code review

Co-authored-by: Douglas Eichelberger <697964+dduugg@users.noreply.github.com>
2025-01-19 11:14:24 +01:00

23 lines
428 B
Ruby

# typed: strict
# frozen_string_literal: true
module OS
module Linux
module Cask
module Quarantine
extend T::Helpers
requires_ancestor { ::Cask::Quarantine }
sig { returns(Symbol) }
def self.check_quarantine_support = :linux
sig { returns(T::Boolean) }
def self.available? = false
end
end
end
end
Cask::Quarantine.prepend(OS::Linux::Cask::Quarantine)