We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5b565a4 + 6f37eac commit cb621f3Copy full SHA for cb621f3
build/triple-dot-checker.php
@@ -32,7 +32,7 @@
32
$it = new \RecursiveDirectoryIterator($dir);
33
34
foreach (new RecursiveIteratorIterator($it) as $file) {
35
- if ($file->getExtension() === 'map') {
+ if (($file->getExtension() === 'map') || $file->isDir()) {
36
continue;
37
}
38
$content = file_get_contents($file->getPathname());
0 commit comments