diff --git a/devenv/src/devenv.rs b/devenv/src/devenv.rs index 08dca14e9..14e39956e 100644 --- a/devenv/src/devenv.rs +++ b/devenv/src/devenv.rs @@ -181,6 +181,7 @@ impl Devenv { std::fs::OpenOptions::new() .append(true) .open(&target_path) + .and_then(|mut file| file.write("\n")) .and_then(|mut file| file.write_all(path.contents())) .expect("Failed to append to existing file"); } else {