all-in-one: format source code

This commit is contained in:
Bert Belder 2017-09-09 20:53:35 +02:00
parent 6e1e6fc83e
commit 0534ee9077
2 changed files with 7 additions and 7 deletions

View File

@ -57,7 +57,7 @@ function include(line, filename) {
var key = path.basename(filename).toLowerCase(); var key = path.basename(filename).toLowerCase();
if (included[key]) if (included[key])
return comment(line); return comment(line);
console.error("Including: " + key); console.error('Including: ' + key);
included[key] = true; included[key] = true;
return lines(filename); return lines(filename);
} }