diff options
Diffstat (limited to 'cli/cache/mod.rs')
-rw-r--r-- | cli/cache/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/cache/mod.rs b/cli/cache/mod.rs index 526236ace..81c126098 100644 --- a/cli/cache/mod.rs +++ b/cli/cache/mod.rs @@ -165,7 +165,7 @@ impl FetchCacher { } } -static DENO_REGISTRY_URL: Lazy<Url> = Lazy::new(|| { +pub(crate) static DENO_REGISTRY_URL: Lazy<Url> = Lazy::new(|| { let env_var_name = "DENO_REGISTRY_URL"; if let Ok(registry_url) = std::env::var(env_var_name) { // ensure there is a trailing slash for the directory |