More no-window flags (#7122)

This commit is contained in:
Jack Amadeo
2026-02-11 12:43:18 -05:00
committed by GitHub
parent 1aacd56225
commit fb47728f1b
12 changed files with 90 additions and 3 deletions
+4
View File
@@ -6,6 +6,8 @@ use tokio::process::Command;
use tokio::sync::Mutex;
use tracing::{debug, info, warn};
use crate::subprocess::SubprocessExt;
use crate::agents::types::SessionConfig;
use crate::agents::types::{
RetryConfig, SuccessCheck, DEFAULT_ON_FAILURE_TIMEOUT_SECONDS, DEFAULT_RETRY_TIMEOUT_SECONDS,
@@ -243,6 +245,8 @@ pub async fn execute_shell_command(
cmd
};
cmd.set_no_window();
let output = cmd
.stdout(Stdio::piped())
.stderr(Stdio::piped())