From 2349b61bb2d75328eca41eb216eb928dafbc4a4f Mon Sep 17 00:00:00 2001 From: Jo Shields Date: Fri, 14 Jun 2019 15:07:59 -0400 Subject: Cached binary-not-source in a versioned directory Maybe this fixes https://github.com/mono/mono/issues/14957 --- bockbuild/package.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bockbuild/package.py b/bockbuild/package.py index 84a66b1..330eb55 100644 --- a/bockbuild/package.py +++ b/bockbuild/package.py @@ -337,8 +337,8 @@ class Package: return clean_archive - def get_download_dest(url): - return os.path.join(source_cache_dir, os.path.basename(url)) + def get_download_dest(url,version): + return os.path.join(source_cache_dir, version, os.path.basename(url)) def get_git_cache_path(): if self.organization is None: @@ -370,7 +370,7 @@ class Package: # raise Exception ('HTTP downloads are no longer allowed: %s', source) if source.startswith(('http://', 'https://', 'ftp://')): - cache = get_download_dest(source) + cache = get_download_dest(source,self.version) if self.profile.cache_host is not None: cached_source = os.path.join( self.profile.cache_host, os.path.basename(source)) -- cgit v1.2.3