1
0

Fix: Recursion was never called

This commit is contained in:
Richard Dern 2024-05-05 17:15:33 +02:00
parent 81398f65a7
commit eaa8cedd81

View File

@ -94,8 +94,10 @@ protected function createIntermediateBundles($parent)
$bundle->save();
$this->createIntermediateBundles($bundle->getPath());
$this->line(sprintf('Created intermediary bundle %s', $bundle->getPath()));
}
$this->createIntermediateBundles($bundle->getPath());
}
}
}