mirror of https://github.com/astral-sh/uv
Don't show deprecated warning in `uvx --isolated` (#5798)
## Summary An oversight.
This commit is contained in:
parent
33ec6f063d
commit
801797e7bf
|
|
@ -73,7 +73,7 @@ async fn run(cli: Cli) -> Result<ExitStatus> {
|
||||||
match &*cli.command {
|
match &*cli.command {
|
||||||
// Supports `--isolated` as its own argument, so we can't warn either way.
|
// Supports `--isolated` as its own argument, so we can't warn either way.
|
||||||
Commands::Tool(ToolNamespace {
|
Commands::Tool(ToolNamespace {
|
||||||
command: ToolCommand::Run(_),
|
command: ToolCommand::Uvx(_) | ToolCommand::Run(_),
|
||||||
}) => false,
|
}) => false,
|
||||||
|
|
||||||
// Supports `--isolated` as its own argument, so we can't warn either way.
|
// Supports `--isolated` as its own argument, so we can't warn either way.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue