Merge pull request #1237 from Felixls/patch-1

Update build/build.js
This commit is contained in:
Vladimir Agafonkin 2012-12-27 04:58:06 -08:00
commit 045883bfae

View File

@ -17,7 +17,7 @@ function lintFiles(files) {
errors = jshint.JSHINT.errors;
for (j = 0, len2 = errors.length; j < len2; j++) {
e = errors[i];
e = errors[j];
console.log(files[i] + '\tline ' + e.line + '\tcol ' + e.character + '\t ' + e.reason);
}