Skip to content

Commit

Permalink
fixup! ping rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed May 19, 2021
1 parent 4f5a960 commit c7f23b9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions utils/compiler/src/Command/DowngradePathsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ protected function execute(InputInterface $input, OutputInterface $output): int
foreach ($downgradePaths as $key => $downgradePath) {
if (in_array(
$downgradePath,
['vendor/symplify', 'vendor/symfony', 'vendor/nikic', 'vendor/psr', 'vendor/phpstan', 'vendor/ssch'],
[
'vendor/symplify', 'vendor/symfony', 'vendor/nikic', 'vendor/psr', 'vendor/phpstan',
// 'vendor/ssch'
],
true
)) {
unset($downgradePaths[$key]);
Expand All @@ -39,7 +42,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
'vendor/symfony/dependency-injection',
'vendor/symfony/console',
'vendor/symfony vendor/psr',
'vendor/symplify vendor/nikic vendor/ssch bin src packages rector.php',
'vendor/symplify vendor/nikic bin src packages rector.php', // vendor/ssch
'rules',
], $downgradePaths);

Expand Down

0 comments on commit c7f23b9

Please sign in to comment.