Douglas Eichelberger 24cf6076e8 brew style --fix
2023-04-24 20:42:39 -07:00

15 lines
238 B
Ruby

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