MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / run_cmd

Function run_cmd

scripts/publish.rs:234–242  ·  view source on GitHub ↗
(cmd: &mut Command)

Source from the content-addressed store, hash-verified

232}
233
234fn run_cmd(cmd: &mut Command) {
235 let status = cmd_status(cmd);
236 assert!(
237 status.success(),
238 "Command `{:?}` exited with failure status: {}",
239 cmd,
240 status
241 );
242}
243
244fn find_crates(dir: &Path, ws: &Workspace, dst: &mut Vec<Crate>) {
245 if dir.join("Cargo.toml").exists() {

Callers 2

mainFunction · 0.85
verify_and_vendorFunction · 0.85

Calls 1

cmd_statusFunction · 0.85

Tested by

no test coverage detected