MCPcopy Create free account
hub / github.com/bootc-dev/bootc / run

Method run

crates/utils/src/command.rs:222–226  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

220
221impl AsyncCommandRunExt for tokio::process::Command {
222 async fn run(&mut self) -> Result<()> {
223 let stderr = tempfile::tempfile()?;
224 self.stderr(stderr.try_clone()?);
225 self.status().await?.check_status_with_stderr(stderr)
226 }
227}
228
229#[cfg(test)]

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected