diff --git a/app/Console/Commands/Bundle/Repair.php b/app/Console/Commands/Bundle/Repair.php index 35c20b4..4e9b4f0 100644 --- a/app/Console/Commands/Bundle/Repair.php +++ b/app/Console/Commands/Bundle/Repair.php @@ -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()); } } }