Skip to content

Commit 3720ba6

Browse files
committed
Update build-packages.php to cover test_apps/*/
1 parent c7debbf commit 3720ba6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/build-packages.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
use Symfony\Component\Finder\Finder;
1010

1111
$finder = (new Finder())
12-
->in([__DIR__.'/../src/*/', __DIR__.'/../src/*/src/Bridge/*/', __DIR__.'/../ux.symfony.com/'])
12+
->in([__DIR__.'/../src/*/', __DIR__.'/../src/*/src/Bridge/*/', __DIR__.'/../ux.symfony.com/', __DIR__.'/../test_apps/*/'])
1313
->depth(0)
1414
->name('composer.json')
1515
;
1616

17-
// 1. Find all UX packages
17+
// 1. Find all UX packages
1818
$uxPackages = [];
1919
foreach ($finder as $composerFile) {
2020
$json = file_get_contents($composerFile->getPathname());
@@ -54,7 +54,7 @@
5454
$packageData[$key][$packageName] = '@dev';
5555
}
5656
}
57-
57+
5858
if ($repositories) {
5959
$packageData['repositories'] = $repositories;
6060
}

0 commit comments

Comments
 (0)