From 73286850e44f11c2c4612f29a3eeaba18ff331a0 Mon Sep 17 00:00:00 2001 From: Killesreiter Volker Date: Mon, 26 Aug 2024 14:16:21 +0200 Subject: [PATCH] Remove sql create and cache rebuild on backend:install --- BackendCommands.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/BackendCommands.php b/BackendCommands.php index 60d1703..eef0846 100644 --- a/BackendCommands.php +++ b/BackendCommands.php @@ -98,10 +98,6 @@ public function preInstallCommand(CommandData $commandData) */ public function install() { - // Cleanup existing installation. - $this->drush($this->selfRecord(), 'sql-create', [], ['yes' => $this->input()->getOption('yes')]); - $this->drush($this->selfRecord(), 'cache:rebuild'); - // Do the site install $this->drush($this->selfRecord(), 'site:install', [], ['existing-config' => true, 'yes' => $this->input()->getOption('yes')]); }