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

17 lines
247 B
Ruby

module Hbc
module Cache
module_function
def path
@path ||= HOMEBREW_CACHE.join("Cask")
end
def ensure_cache_exists
return if path.exist?
odebug "Creating Cache at #{path}"
path.mkpath
end
end
end