Use error variables directly in the format! string
This commit is contained in:
parent
7668fefbb2
commit
e932c00e85
|
|
@ -60,7 +60,7 @@ pub fn get_available_coauthors() -> BTreeMap<String, Author> {
|
||||||
match parse_coauthors_file() {
|
match parse_coauthors_file() {
|
||||||
Ok(coauthors) => coauthors,
|
Ok(coauthors) => coauthors,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
eprintln!("{}", e);
|
eprintln!("{e:?}");
|
||||||
BTreeMap::new()
|
BTreeMap::new()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -105,7 +105,7 @@ pub fn write_coauthors_file(authors: BTreeMap<String, Author>) {
|
||||||
match fs::write(coauthors_file_path(), json_data) {
|
match fs::write(coauthors_file_path(), json_data) {
|
||||||
Ok(_) => {}
|
Ok(_) => {}
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
eprintln!("Error writing git-coauthors file: {:?}", e);
|
eprintln!("Error writing git-coauthors file: {e:?}");
|
||||||
process::exit(1);
|
process::exit(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue