2018-09-06 09:30:52 +02:00

10 lines
117 B
Ruby

module Cask
module Cache
module_function
def path
@path ||= HOMEBREW_CACHE/"Cask"
end
end
end