From 3d96dad25cdca41ced3c80d8a3b0a29a0d16d98c Mon Sep 17 00:00:00 2001 From: Jack Nagel <jacknagel@gmail.com> Date: Fri, 10 Oct 2014 20:30:29 -0500 Subject: [PATCH] Pull cache creation out of begin block --- Library/Homebrew/resource.rb | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Library/Homebrew/resource.rb b/Library/Homebrew/resource.rb index 0866fa6226..f3bd461061 100644 --- a/Library/Homebrew/resource.rb +++ b/Library/Homebrew/resource.rb @@ -78,12 +78,14 @@ class Resource end def fetch - # Ensure the cache exists HOMEBREW_CACHE.mkpath - downloader.fetch - rescue ErrorDuringExecution, CurlDownloadStrategyError => e - raise DownloadError.new(self, e) - else + + begin + downloader.fetch + rescue ErrorDuringExecution, CurlDownloadStrategyError => e + raise DownloadError.new(self, e) + end + cached_download end -- GitLab