From dba2a53216c515700c42766514d5da639dd928d7 Mon Sep 17 00:00:00 2001 From: Max Howell Date: Sun, 28 Jun 2009 17:35:04 +0100 Subject: [PATCH] Use ~/Library/Caches not ~/Library/Application Support for http-cache --- Library/Homebrew/brewkit.rb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Library/Homebrew/brewkit.rb b/Library/Homebrew/brewkit.rb index 70785fa1ad..0b99d97765 100644 --- a/Library/Homebrew/brewkit.rb +++ b/Library/Homebrew/brewkit.rb @@ -43,10 +43,10 @@ def ohai title puts "\033[0;34m==>\033[0;0;1m #{title[0,n]}\033[0;0m" end -def appsupport - appsupport = File.expand_path "~/Library/Application Support/Homebrew" - FileUtils.mkpath appsupport - return appsupport +def cache + cache=File.expand_path "~/Library/Caches/Homebrew" + FileUtils.mkpath cache + return cache end class BuildError