Skip to content
Snippets Groups Projects
Commit 939a530d authored by Mike McQuaid's avatar Mike McQuaid
Browse files

Make bottle path.

parent 23769d62
No related branches found
No related tags found
No related merge requests found
......@@ -164,7 +164,8 @@ end
class CurlBottleDownloadStrategy <CurlDownloadStrategy
def initialize url, name, version, specs
super
@tarball_path=HOMEBREW_CACHE+'Bottles'+("#{name}-#{version}"+ext)
HOMEBREW_CACHE_BOTTLES.mkpath
@tarball_path=HOMEBREW_CACHE_BOTTLES+("#{name}-#{version}"+ext)
end
def stage
ohai "Pouring #{File.basename(@tarball_path)}"
......
......@@ -23,6 +23,9 @@ end
# Where brews installed via URL are cached
HOMEBREW_CACHE_FORMULA = HOMEBREW_CACHE+"Formula"
# Where bottles are cached
HOMEBREW_CACHE_BOTTLES = HOMEBREW_CACHE+"Bottles"
if not defined? HOMEBREW_BREW_FILE
HOMEBREW_BREW_FILE = ENV['HOMEBREW_BREW_FILE'] || `which brew`.chomp
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment