From 801797e7bf24a3ded1b85aadbe140318b02089a6 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 5 Aug 2024 16:32:22 -0400 Subject: [PATCH] Don't show deprecated warning in `uvx --isolated` (#5798) ## Summary An oversight. --- crates/uv/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv/src/lib.rs b/crates/uv/src/lib.rs index e760e6f82..41683abb6 100644 --- a/crates/uv/src/lib.rs +++ b/crates/uv/src/lib.rs @@ -73,7 +73,7 @@ async fn run(cli: Cli) -> Result { match &*cli.command { // Supports `--isolated` as its own argument, so we can't warn either way. Commands::Tool(ToolNamespace { - command: ToolCommand::Run(_), + command: ToolCommand::Uvx(_) | ToolCommand::Run(_), }) => false, // Supports `--isolated` as its own argument, so we can't warn either way.