Add missing empty line when appending to existing file
This commit is contained in:
parent
2edc3082d3
commit
a5016082fc
1 changed files with 1 additions and 1 deletions
|
@ -127,7 +127,7 @@ async fn main() -> Result<()> {
|
|||
Ok(exists) if exists => {
|
||||
debug!("Appending {}", output);
|
||||
let mut file = File::options().append(true).open(&output)?;
|
||||
file.write("\n".as_bytes())?;
|
||||
file.write("\n\n".as_bytes())?;
|
||||
file
|
||||
}
|
||||
_ => {
|
||||
|
|
Loading…
Reference in a new issue