summaryrefslogtreecommitdiff
path: root/cli/cache/deno_dir.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/cache/deno_dir.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/cache/deno_dir.rs')
-rw-r--r--cli/cache/deno_dir.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/cache/deno_dir.rs b/cli/cache/deno_dir.rs
index 88d8a31c0..7b7059c22 100644
--- a/cli/cache/deno_dir.rs
+++ b/cli/cache/deno_dir.rs
@@ -126,9 +126,9 @@ impl DenoDir {
self.root.join("registries")
}
- /// Path to the dependencies cache folder.
- pub fn deps_folder_path(&self) -> PathBuf {
- self.root.join("deps")
+ /// Path to the remote cache folder.
+ pub fn remote_folder_path(&self) -> PathBuf {
+ self.root.join("remote")
}
/// Path to the origin data cache folder.