Merge pull request #1548 from mathstuf/missing-eol

main: end error messages with a newline
This commit is contained in:
Oliver Schneider 2017-02-17 13:40:51 +01:00 committed by GitHub
commit 0682c950bc

View file

@ -182,7 +182,7 @@ pub fn main() {
.map(AsRef::as_ref)) {
metadata
} else {
let _ = io::stderr().write_fmt(format_args!("error: Could not obtain cargo metadata."));
let _ = io::stderr().write_fmt(format_args!("error: Could not obtain cargo metadata.\n"));
process::exit(101);
};