mirror of https://github.com/astral-sh/uv
docs: reference `--no-progress` option in related environment variable (#9357)
## Summary Aligns the description of `UV_NO_PROGRESS` with other env vars that also have a related flag. `--no-progress` is a "global option" and exists in every command. --------- Co-authored-by: Zanie Blue <contact@zanie.dev>
This commit is contained in:
parent
dae584d49b
commit
536d038f9b
|
|
@ -186,7 +186,8 @@ impl EnvVars {
|
|||
/// packages.
|
||||
pub const UV_CONCURRENT_INSTALLS: &'static str = "UV_CONCURRENT_INSTALLS";
|
||||
|
||||
/// Disables all progress output. For example, spinners and progress bars.
|
||||
/// Equivalent to the `--no-progress` command-line argument. Disables all progress output. For
|
||||
/// example, spinners and progress bars.
|
||||
pub const UV_NO_PROGRESS: &'static str = "UV_NO_PROGRESS";
|
||||
|
||||
/// Specifies the directory where uv stores managed tools.
|
||||
|
|
|
|||
|
|
@ -181,7 +181,8 @@ Ignore `.env` files when executing `uv run` commands.
|
|||
|
||||
### `UV_NO_PROGRESS`
|
||||
|
||||
Disables all progress output. For example, spinners and progress bars.
|
||||
Equivalent to the `--no-progress` command-line argument. Disables all progress output. For
|
||||
example, spinners and progress bars.
|
||||
|
||||
### `UV_NO_SYNC`
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue