Skip to content

Commit 7e305cc

Browse files
committed
Fix link script by adding Bridges support
1 parent 7292e1a commit 7e305cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

link

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ if (!is_dir("$pathToProject/vendor/symfony")) {
3838
$sfPackages = array();
3939

4040
$filesystem = new Filesystem();
41-
$directories = glob(__DIR__.'/src/*', GLOB_ONLYDIR | GLOB_NOSORT);
41+
$directories = [...glob(__DIR__.'/src/*', GLOB_ONLYDIR | GLOB_NOSORT), ...glob(__DIR__.'/src/*/src/Bridge/*', GLOB_ONLYDIR | GLOB_NOSORT)];
4242

4343
foreach ($directories as $dir) {
4444
if ($filesystem->exists($composer = "$dir/composer.json")) {

0 commit comments

Comments
 (0)