Skip to content

Commit

Permalink
Run Backyard installer twice to nest resources properly
Browse files Browse the repository at this point in the history
  • Loading branch information
hugopeek committed Mar 20, 2019
1 parent d5c8bb2 commit 45124d3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Command/InstallPackageCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,12 @@ protected function execute(InputInterface $input, OutputInterface $output)
$package->save();
$package->install();

// personal hack
// run Backyard installer twice to nest resources properly
if ($sig[0] == 'romanescobackyard' ) {
$package->install();
}

$this->output->writeln("<info>Package $packageSignature successfully installed.</info>");
}

Expand Down

0 comments on commit 45124d3

Please sign in to comment.