Skip to content

Commit

Permalink
Merge pull request #554 from joaocsilva/feature/DQA-4585
Browse files Browse the repository at this point in the history
DQA-4585: Make pipeline fail if package is not found.
  • Loading branch information
jonhy81 authored Sep 26, 2022
2 parents 3e41154 + 5018b0f commit 188b19d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/TaskRunner/Commands/ToolCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -1535,7 +1535,8 @@ public function toolkitInstallDependencies(array $options = [
if (strpos($info, '[installed]') !== false) {
$data[$package] = 'already installed';
} elseif (strpos($info, $package) === false) {
$data[$package] = 'not found, skip install';
$data[$package] = 'not found';
$return = 1;
} else {
$install[] = $package;
}
Expand Down

0 comments on commit 188b19d

Please sign in to comment.