We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65aab70 commit 6b96b80Copy full SHA for 6b96b80
crates/cargo-codspeed/src/run.rs
@@ -95,7 +95,7 @@ pub fn run_benches(
95
.env("CODSPEED_CARGO_WORKSPACE_ROOT", workspace_root.as_ref())
96
.current_dir(&bench.working_directory)
97
.status()
98
- .map_err(|_| anyhow!("failed to execute the benchmark process"))
+ .map_err(|e| anyhow!("failed to execute the benchmark process: {}", e))
99
.and_then(|status| {
100
if status.success() {
101
Ok(())
0 commit comments