fix(spawner): allow too_many_arguments on prepare_spawn_command
Some checks failed
CI / rust (pull_request) Has been cancelled
CI / markdown (pull_request) Has been cancelled

Unbreaks the workspace clippy gate: prepare_spawn_command has 8 args (8/7), so
clippy::too_many_arguments fails under -D warnings on main.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Sam & Claude 2026-06-14 01:30:31 +02:00
parent 5d7536101f
commit 0b364ac36d

View file

@ -247,6 +247,7 @@ async fn remove_staged_dir(path: &Path) {
let _ = tokio::fs::remove_dir_all(path).await;
}
#[allow(clippy::too_many_arguments)]
pub async fn prepare_spawn_command(
binary: &str,
args: &[String],