From 4c8d57db03bac12d2a13566b3cc7454cfbd67314 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Tue, 1 Oct 2024 14:05:40 -0400 Subject: BREAKING: rename "deps" remote cache folder to "remote" (#25969) Closes https://github.com/denoland/deno/issues/25967 Closes #25968 --- cli/factory.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/factory.rs') diff --git a/cli/factory.rs b/cli/factory.rs index 2cef87599..b96a133e9 100644 --- a/cli/factory.rs +++ b/cli/factory.rs @@ -301,7 +301,7 @@ impl CliFactory { pub fn global_http_cache(&self) -> Result<&Arc, AnyError> { self.services.global_http_cache.get_or_try_init(|| { Ok(Arc::new(GlobalHttpCache::new( - self.deno_dir()?.deps_folder_path(), + self.deno_dir()?.remote_folder_path(), crate::cache::RealDenoCacheEnv, ))) }) -- cgit v1.2.3