Add lib-concatting newlines to jakefile as well

This commit is contained in:
Nathan Shively-Sanders
2016-10-17 09:46:26 -07:00
parent f7647db7f7
commit 6a59948ea1

View File

@@ -355,6 +355,7 @@ function concatenateFiles(destinationFile, sourceFiles) {
if (!fs.existsSync(sourceFiles[i])) {
fail(sourceFiles[i] + " does not exist!");
}
fs.appendFileSync(temp, "\n\n");
fs.appendFileSync(temp, fs.readFileSync(sourceFiles[i]));
}
// Move the file to the final destination