mirror of
https://github.com/symfony/ux.git
synced 2026-03-24 00:02:21 +01:00
Fix link script by adding Bridges support
This commit is contained in:
2
link
2
link
@@ -38,7 +38,7 @@ if (!is_dir("$pathToProject/vendor/symfony")) {
|
||||
$sfPackages = array();
|
||||
|
||||
$filesystem = new Filesystem();
|
||||
$directories = glob(__DIR__.'/src/*', GLOB_ONLYDIR | GLOB_NOSORT);
|
||||
$directories = [...glob(__DIR__.'/src/*', GLOB_ONLYDIR | GLOB_NOSORT), ...glob(__DIR__.'/src/*/src/Bridge/*', GLOB_ONLYDIR | GLOB_NOSORT)];
|
||||
|
||||
foreach ($directories as $dir) {
|
||||
if ($filesystem->exists($composer = "$dir/composer.json")) {
|
||||
|
||||
Reference in New Issue
Block a user