From a674fbd8fc44412e7a89acb555895fc2ce5f3dac Mon Sep 17 00:00:00 2001 From: Zubarev Grigoriy Date: Thu, 28 Nov 2024 02:04:43 +0300 Subject: [PATCH] Fix `--refresh-package` flag mentioned as `--refresh-dependency` --- docs/concepts/cache.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/cache.md b/docs/concepts/cache.md index 44a0d2bcc90b3..173003490b8aa 100644 --- a/docs/concepts/cache.md +++ b/docs/concepts/cache.md @@ -21,7 +21,7 @@ If you're running into caching issues, uv includes a few escape hatches: - To force uv to revalidate cached data for all dependencies, pass `--refresh` to any command (e.g., `uv sync --refresh` or `uv pip install --refresh ...`). -- To force uv to revalidate cached data for a specific dependency pass `--refresh-dependency` to any +- To force uv to revalidate cached data for a specific dependency pass `--refresh-package` to any command (e.g., `uv sync --refresh-package flask` or `uv pip install --refresh-package flask ...`). - To force uv to ignore existing installed versions, pass `--reinstall` to any installation command (e.g., `uv sync --reinstall` or `uv pip install --reinstall ...`).