We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f59d00b commit 0a2a7bcCopy full SHA for 0a2a7bc
crates/uv/src/lib.rs
@@ -428,6 +428,9 @@ async fn run(mut cli: Cli) -> Result<ExitStatus> {
428
show_settings!(cache_settings, false);
429
430
// Configure the cache.
431
+ if cache_settings.no_cache {
432
+ debug!("Disabling the uv cache due to `--no-cache`");
433
+ }
434
let cache = Cache::from_settings(cache_settings.no_cache, cache_settings.cache_dir)?;
435
436
// Configure the global network settings.
0 commit comments