mirror of
https://github.com/astral-sh/uv.git
synced 2025-08-03 02:22:19 +00:00
Add uv tool list --show-paths
to show install paths (#5164)
## Summary Closes https://github.com/astral-sh/uv/issues/4823.
This commit is contained in:
parent
6a49dba30c
commit
622e9e8799
6 changed files with 74 additions and 13 deletions
|
@ -2202,7 +2202,11 @@ pub struct ToolInstallArgs {
|
|||
|
||||
#[derive(Args)]
|
||||
#[allow(clippy::struct_excessive_bools)]
|
||||
pub struct ToolListArgs;
|
||||
pub struct ToolListArgs {
|
||||
/// Whether to display the path to each tool environment and installed executable.
|
||||
#[arg(long)]
|
||||
pub show_paths: bool,
|
||||
}
|
||||
|
||||
#[derive(Args)]
|
||||
#[allow(clippy::struct_excessive_bools)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue