MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / run_launchctl

Function run_launchctl

src/daemon/service.rs:837–843  ·  view source on GitHub ↗
(args: &[&str])

Source from the content-addressed store, hash-verified

835}
836
837fn run_launchctl(args: &[&str]) -> Result<std::process::Output> {
838 let output = launchctl_spawn(args)?;
839 if output.status.success() {
840 return Ok(output);
841 }
842 Err(launchctl_failure(args, &output))
843}
844
845fn run_launchctl_allow_not_loaded(args: &[&str]) -> Result<()> {
846 let output = launchctl_spawn(args)?;

Callers 3

run_launchd_commandsFunction · 0.85
launchd_installFunction · 0.85
verify_launchd_startedFunction · 0.85

Calls 3

launchctl_spawnFunction · 0.85
launchctl_failureFunction · 0.85
successMethod · 0.80

Tested by

no test coverage detected