!62 Fix: Unexpected use of continue statement.
Merge pull request !62 from tzhtaylor/master
This commit is contained in:
commit
490b84a721
|
@ -128,9 +128,9 @@ class BasicGenerator extends Generator {
|
|||
if (fs.existsSync(fullpath)) {
|
||||
this.traverseDirCapture(fullpath, dirCallback, fileCallback);
|
||||
}
|
||||
continue;
|
||||
} else {
|
||||
fileCallback(fullpath);
|
||||
}
|
||||
fileCallback(fullpath);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue