Skip to content

Commit 3fcbcf4

Browse files
committed
Don't discard flycheck error messages
1 parent 82abe04 commit 3fcbcf4

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)