Skip to content

Commit

Permalink
add back cache rebuild but after install
Browse files Browse the repository at this point in the history
  • Loading branch information
ol0lll committed Aug 26, 2024
1 parent 7328685 commit 7b657fd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion BackendCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,11 @@ public function preInstallCommand(CommandData $commandData)
*/
public function install()
{
// Do the site install
// Do the site install.
$this->drush($this->selfRecord(), 'site:install', [], ['existing-config' => true, 'yes' => $this->input()->getOption('yes')]);

// Clear caches.
$this->drush($this->selfRecord(), 'cache:rebuild');
}

/**
Expand Down

0 comments on commit 7b657fd

Please sign in to comment.