mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
13 lines
196 B
Ruby
13 lines
196 B
Ruby
module Hbc
|
|
module Cache
|
|
module_function
|
|
|
|
def ensure_cache_exists
|
|
return if Hbc.cache.exist?
|
|
|
|
odebug "Creating Cache at #{Hbc.cache}"
|
|
Hbc.cache.mkpath
|
|
end
|
|
end
|
|
end
|