Fix toolstate history format
We were inserting *before* the existing newline, so we should prepend it not append it to our inserted string.
This commit is contained in:
parent
0de96d37fb
commit
1787b2b5ab
@ -413,7 +413,7 @@ fn change_toolstate(
|
|||||||
let history_path = format!("rust-toolstate/history/{}.tsv", OS.expect("linux/windows only"));
|
let history_path = format!("rust-toolstate/history/{}.tsv", OS.expect("linux/windows only"));
|
||||||
let mut file = t!(fs::read_to_string(&history_path));
|
let mut file = t!(fs::read_to_string(&history_path));
|
||||||
let end_of_first_line = file.find('\n').unwrap();
|
let end_of_first_line = file.find('\n').unwrap();
|
||||||
file.insert_str(end_of_first_line, &format!("{}\t{}\n", commit, toolstate_serialized));
|
file.insert_str(end_of_first_line, &format!("\n{}\t{}", commit, toolstate_serialized));
|
||||||
t!(fs::write(&history_path, file));
|
t!(fs::write(&history_path, file));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user