Skip to content

Commit 2876df1

Browse files
bors[bot]Veykril
andauthored
Merge #10875
10875: minor: Don't discard flycheck error messages r=Veykril a=Veykril cc #10793 bors r+ Co-authored-by: Lukas Wirth <[email protected]>
2 parents 82abe04 + 3fcbcf4 commit 2876df1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/flycheck/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ impl CargoActor {
333333
output.status
334334
)))
335335
}
336-
Err(e) => Err(e),
336+
Err(e) => Err(io::Error::new(e.kind(), format!("{:?}: {}", e, error))),
337337
}
338338
}
339339
}

0 commit comments

Comments
 (0)