diff options
-rw-r--r-- | tools/ContextGenerator.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ContextGenerator.php b/tools/ContextGenerator.php index 9c6a12d..4c25ecd 100644 --- a/tools/ContextGenerator.php +++ b/tools/ContextGenerator.php @@ -326,7 +326,7 @@ class ContextGenerator foreach ($files as $file) { // Skipping current and parent directories. - if (($file === '.') || ($file === '..') || ($file[0] === '_')) { + if (($file[0] === '.') || ($file[0] === '_')) { continue; } |