fix folder not existing (ie production-modules)

This commit is contained in:
odain
2025-09-19 15:45:32 +02:00
parent bca79a1a06
commit 5f1765504c

View File

@@ -47,6 +47,10 @@ class ModulesDependencyValidationService {
protected static function ListModuleFiles(string $sDirectory) : array
{
if (! is_dir($sDirectory)){
return [];
}
$aModules=[];
if ($hDir = opendir($sDirectory))
{