summaryrefslogtreecommitdiff
path: root/cli/factory.rs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2024-10-01 14:05:40 -0400
committerGitHub <noreply@github.com>2024-10-01 14:05:40 -0400
commit4c8d57db03bac12d2a13566b3cc7454cfbd67314 (patch)
tree7f8ffe216dd78245ab327685e6b4752f8196be08 /cli/factory.rs
parent29104384c4cb5aab082749382802560907ebec42 (diff)
BREAKING: rename "deps" remote cache folder to "remote" (#25969)
Closes https://github.com/denoland/deno/issues/25967 Closes #25968
Diffstat (limited to 'cli/factory.rs')
-rw-r--r--cli/factory.rs2
1 files changed, 1 insertions, 1 deletions
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<GlobalHttpCache>, 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,
)))
})