Skip to content

Commit

Permalink
Merge #10875
Browse files Browse the repository at this point in the history
10875: minor: Don't discard flycheck error messages r=Veykril a=Veykril

cc #10793
bors r+

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
  • Loading branch information
bors[bot] and Veykril committed Nov 27, 2021
2 parents 82abe04 + 3fcbcf4 commit 2876df1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/flycheck/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ impl CargoActor {
output.status
)))
}
Err(e) => Err(e),
Err(e) => Err(io::Error::new(e.kind(), format!("{:?}: {}", e, error))),
}
}
}
Expand Down

0 comments on commit 2876df1

Please sign in to comment.