2020-08-26 03:13:59 +02:00

15 lines
210 B
Ruby

# frozen_string_literal: true
module Cask
# Helper functions for the cask cache.
#
# @api private
module Cache
module_function
def path
@path ||= HOMEBREW_CACHE/"Cask"
end
end
end