Skip to content
Snippets Groups Projects

Issue #3258611: ExcludedPathsSubscriber should ignore unreadable directories

Merged Issue #3258611: ExcludedPathsSubscriber should ignore unreadable directories
All threads resolved!
All threads resolved!
Files
2
@@ -189,7 +189,8 @@ class ExcludedPathsSubscriber implements EventSubscriberInterface {
->directories()
->name('.git')
->ignoreVCS(FALSE)
->ignoreDotFiles(FALSE);
->ignoreDotFiles(FALSE)
->ignoreUnreadableDirs();
foreach ($finder as $git_directory) {
$project[] = $git_directory->getPathname();
Loading