2019-04-20 13:27:36 +09:00

12 lines
148 B
Ruby

# frozen_string_literal: true
module Cask
module Cache
module_function
def path
@path ||= HOMEBREW_CACHE/"Cask"
end
end
end