huskies: merge 986

This commit is contained in:
dave
2026-05-13 15:57:24 +00:00
parent 91fbad568a
commit 430079ecbc
13 changed files with 377 additions and 81 deletions
@@ -161,7 +161,7 @@ pub(in crate::agents::pool) async fn run_server_owned_completion(
false,
));
}
let (passed, output) = crate::agents::gates::run_acceptance_gates(&path)?;
let outcome = crate::agents::gates::run_acceptance_gates(&path)?;
// Restore stashed uncommitted changes.
if stashed {
let _ = std::process::Command::new("git")
@@ -169,7 +169,7 @@ pub(in crate::agents::pool) async fn run_server_owned_completion(
.current_dir(&path)
.output();
}
Ok((passed, output, false))
Ok((outcome.passed, outcome.output, false))
})
.await
{