Skip to content

Commit

Permalink
DQA-7414: Ignore metapackage packages in component-check (#700)
Browse files Browse the repository at this point in the history
Co-authored-by: J. João Santos <[email protected]>
  • Loading branch information
joaocsilva and jonhy81 authored Sep 27, 2023
1 parent a9e36df commit 6434466
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/TaskRunner/Commands/ComponentCheckCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down

0 comments on commit 6434466

Please sign in to comment.