diff --git a/crates/uv/src/commands/run.rs b/crates/uv/src/commands/run.rs index 8aaa31b56..c2e9133dd 100644 --- a/crates/uv/src/commands/run.rs +++ b/crates/uv/src/commands/run.rs @@ -111,7 +111,7 @@ pub(crate) async fn run_to_completion(mut handle: Child) -> anyhow::Result { // If the child has already exited, we can't send it signals let Some(child_pid) = *ChildPid::from(&handle) else { - debug!("Received SIGINT, but the child has already exited"); + debug!("Received SIGTERM, but the child has already exited"); continue; };