10875: minor: Don't discard flycheck error messages r=Veykril a=Veykril

cc #10793
bors r+

Co-authored-by: Lukas Wirth <lukastw97@gmail.com>
This commit is contained in:
bors[bot] 2021-11-27 17:58:28 +00:00 committed by GitHub
commit 2876df147e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -333,7 +333,7 @@ impl CargoActor {
output.status
)))
}
Err(e) => Err(e),
Err(e) => Err(io::Error::new(e.kind(), format!("{:?}: {}", e, error))),
}
}
}