Remove newline from commit in toolstate

This commit is contained in:
Mark Rousskov 2019-12-19 22:30:04 -05:00
parent 19b3813b5e
commit 1d9a1799e8
1 changed files with 1 additions and 1 deletions

View File

@ -413,7 +413,7 @@ fn change_toolstate(
let history_path = format!("rust-toolstate/history/{}.tsv", OS.expect("linux/windows only"));
let mut file = t!(fs::read_to_string(&history_path));
let end_of_first_line = file.find('\n').unwrap();
file.insert_str(end_of_first_line, &format!("\n{}\t{}", commit, toolstate_serialized));
file.insert_str(end_of_first_line, &format!("\n{}\t{}", commit.trim(), toolstate_serialized));
t!(fs::write(&history_path, file));
}