Build: Modify uglify.js to include a newline charakter after the copyright comment, makes diffing against new build a little bit more efficient

This commit is contained in:
Jörn Zaefferer 2012-03-10 14:16:13 +01:00
parent 5e6fc4f086
commit f8bad0441d

View File

@ -230,7 +230,7 @@ function show_copyright(comments) {
if (c.type == "comment1") {
ret += "//" + c.value + "\n";
} else {
ret += "/*" + c.value + "*/";
ret += "/*" + c.value + "*/\n";
}
}
return ret;