Skip to content

Commit bbea942

Browse files
committed
Fixes acquia#1582: @executeInDrupalVm annotation not respected.
1 parent e896f38 commit bbea942

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Robo/Commands/Blt/DoctorCommand.php

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
namespace Acquia\Blt\Robo\Commands\Blt;
44

55
use Acquia\Blt\Robo\BltTasks;
6+
use Robo\Contract\VerbosityThresholdInterface;
67
use Symfony\Component\Yaml\Yaml;
78

89
/**
@@ -17,6 +18,11 @@ class DoctorCommand extends BltTasks {
1718
*/
1819
public function doctor() {
1920

21+
$this->taskDrush()
22+
->drush('cc drush')
23+
->setVerbosityThreshold(VerbosityThresholdInterface::VERBOSITY_VERBOSE)
24+
->run();
25+
2026
// Attempt to run BLT doctor inside of a VM.
2127
if ($this->getInspector()->isDrupalVmLocallyInitialized()
2228
&& $this->getInspector()->isDrupalVmBooted()

0 commit comments

Comments
 (0)