mirror of https://github.com/astral-sh/uv
Log when the cache is disabled (#15828)
## Summary This strikes me as fairly reasonable. Closes https://github.com/astral-sh/uv/issues/15822.
This commit is contained in:
parent
f59d00b479
commit
0a2a7bc445
|
|
@ -428,6 +428,9 @@ async fn run(mut cli: Cli) -> Result<ExitStatus> {
|
|||
show_settings!(cache_settings, false);
|
||||
|
||||
// Configure the cache.
|
||||
if cache_settings.no_cache {
|
||||
debug!("Disabling the uv cache due to `--no-cache`");
|
||||
}
|
||||
let cache = Cache::from_settings(cache_settings.no_cache, cache_settings.cache_dir)?;
|
||||
|
||||
// Configure the global network settings.
|
||||
|
|
|
|||
Loading…
Reference in New Issue