diff --git a/src/ops/cmd.rs b/src/ops/cmd.rs index c1d56dacf..4f95ac6ee 100644 --- a/src/ops/cmd.rs +++ b/src/ops/cmd.rs @@ -42,10 +42,10 @@ fn do_call( let mut child = cmd .spawn() - .map_err(|e| anyhow::format_err!("failed to launch `{cmd_name}{ctx_dir}`: {e}"))?; + .map_err(|e| anyhow::format_err!("failed to launch `{cmd_name}`{ctx_dir}: {e}"))?; let result = child .wait() - .map_err(|e| anyhow::format_err!("failed to launch `{cmd_name}{ctx_dir}`: {e}"))?; + .map_err(|e| anyhow::format_err!("failed to launch `{cmd_name}`{ctx_dir}: {e}"))?; Ok(result.success()) }