diff --git a/src/TaskRunner/Commands/ComponentCheckCommands.php b/src/TaskRunner/Commands/ComponentCheckCommands.php index 3a8008082..7319a22ad 100644 --- a/src/TaskRunner/Commands/ComponentCheckCommands.php +++ b/src/TaskRunner/Commands/ComponentCheckCommands.php @@ -252,6 +252,10 @@ protected function printComponentResults(ConsoleIO $io) */ protected function validateComponent(array $package, array $modules) { + // Ignore if the package is a metapackage. + if ($package['type'] === 'metapackage') { + return; + } $config = $this->getConfig(); $packageName = $package['name']; $hasBeenQaEd = isset($modules[$packageName]);