From c05b586a30e44a395b3322ea0b99cffbebded81d Mon Sep 17 00:00:00 2001 From: Michael Neale Date: Fri, 7 Nov 2025 14:12:30 +1100 Subject: [PATCH] cleanup --- crates/goose/src/providers/embedded.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/goose/src/providers/embedded.rs b/crates/goose/src/providers/embedded.rs index 621ce301f8..5466124ee2 100644 --- a/crates/goose/src/providers/embedded.rs +++ b/crates/goose/src/providers/embedded.rs @@ -680,7 +680,7 @@ impl ServerProcess { let mut command = tokio::process::Command::from(std_command); command.kill_on_drop(true); - let mut child = command + let child = command .spawn() .map_err(|e| anyhow::anyhow!("Failed to start llama-server: {}", e))?;