diff --git a/src/Robo/Plugin/Commands/DevelopmentModeCommands.php b/src/Robo/Plugin/Commands/DevelopmentModeCommands.php index 4106b4c..4be298f 100644 --- a/src/Robo/Plugin/Commands/DevelopmentModeCommands.php +++ b/src/Robo/Plugin/Commands/DevelopmentModeCommands.php @@ -203,14 +203,6 @@ public function databaseRefreshTugboat(): ResultData $resultData->append($taskResult); $taskResult = $this->taskExec('rm')->args($dbPath)->run(); $resultData->append($taskResult); - - if (!$this->drupalVersionIsD7($this->drupalRoot)) { - $taskResult = $this->taskExec("$this->vendorDirectory/bin/drush") - ->arg('cache:rebuild') - ->dir("$this->drupalRoot/sites/$siteName") - ->run(); - $resultData->append($taskResult); - } } return $resultData;