Remove additional lint from new tasks

This commit is contained in:
Tim Schaub
2014-08-19 12:14:10 -06:00
parent 33b68123ac
commit 30bfa1bf19
2 changed files with 6 additions and 6 deletions

View File

@@ -51,7 +51,7 @@ function getNewerExterns(date, callback) {
walker.on('file', function(root, stats, next) {
var sourcePath = path.join(root, stats.name);
externsPaths.forEach(function(path) {
if (sourcePath == path && stats.mtime > date) {
if (sourcePath === path && stats.mtime > date) {
newer = true;
}
});