Fix newlines when concatenating sections for nostarch files

This commit is contained in:
Carol (Nichols || Goulding)
2017-03-29 15:36:43 -04:00
parent 3a2b0ea7bd
commit adeda10ee4

View File

@@ -100,6 +100,7 @@ fn concat_files(source_paths: Vec<PathBuf>, target_path: PathBuf) -> io::Result<
try!(target.write_all(b"\n"));
try!(target.write_all(&contents));
try!(target.write_all(b"\n"));
}
Ok(())
}