hive-bash-mcp: run tasks under bash instead of sh

This commit is contained in:
damocles 2026-06-19 01:40:09 +02:00 committed by mara
commit 2d97401fc0
3 changed files with 11 additions and 7 deletions

View file

@ -151,7 +151,7 @@ fn render_bash_status(id: &str, resp: Result<DaemonResponse>, waited: bool) -> S
#[derive(Debug, Deserialize, JsonSchema)]
struct BashRunArgs {
/// Shell command to run (passed to `sh -c`).
/// Shell command to run (passed to `bash -c`).
cmd: String,
/// Timeout in seconds. Defaults to `None` (no timeout) — task runs until
/// natural exit. Pass an explicit value to kill the task after N seconds