2024-04-26 19:04:20 +02:00

13 lines
247 B
Ruby

# typed: strict
# frozen_string_literal: true
module Cask
# Helper functions for the cask cache.
module Cache
sig { returns(Pathname) }
def self.path
@path ||= T.let(HOMEBREW_CACHE/"Cask", T.nilable(Pathname))
end
end
end