Added icon count to build log

This commit is contained in:
Dan Leech 2016-01-07 18:41:17 +00:00
parent 580938e761
commit 2037d84e70

View File

@ -102,7 +102,7 @@ fs.writeFile("../index.html", htmlOutput, function(err) {
if(err) { if(err) {
return console.log(err); return console.log(err);
} }
console.log("The index.html file was saved!"); console.log("The index.html file was built with " + source.icons.length + " icons!");
}); });
// Also output to 404.html // Also output to 404.html
@ -110,5 +110,5 @@ fs.writeFile("../404.html", htmlOutput, function(err) {
if(err) { if(err) {
return console.log(err); return console.log(err);
} }
console.log("The 404.html file was saved!"); console.log("The 404.html file was built with " + source.icons.length + " icons!");
}); });