Fix marketplace config test and argument lint

This commit is contained in:
Joe Gershenson
2026-04-14 23:51:34 -07:00
parent d61d3136a6
commit 6a3962f749
2 changed files with 15 additions and 3 deletions

View File

@@ -10,7 +10,13 @@ pub fn create_shell_command_sse_response(
) -> anyhow::Result<String> {
// The `arguments` for the `shell_command` tool is a serialized JSON object.
let command_str = shlex::try_join(command.iter().map(String::as_str))?;
create_shell_command_sse_response_from_command(&command_str, workdir, timeout_ms, call_id, None)
create_shell_command_sse_response_from_command(
&command_str,
workdir,
timeout_ms,
call_id,
/*login*/ None,
)
}
pub fn create_shell_command_sse_response_from_command(