Skip to content

Commit b363558

Browse files
committed
Re-enable list of commands
1 parent 0e7e8cb commit b363558

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/Command/SiteBuildCommand.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ protected function execute(InputInterface $input, OutputInterface $output) {
6969

7070
$commands = [
7171
'drupal site:checkout %s',
72-
// 'drupal site:compose %s',
73-
// 'drupal site:npm %s',
74-
// 'drupal site:grunt %s',
75-
// 'drupal site:settings:db %s',
76-
// 'drupal site:phpunit:setup %s',
77-
// 'drupal site:behat:setup %s',
78-
// 'drupal site:settings:memcache %s',
79-
// 'drupal site:db:import %s',
72+
'drupal site:compose %s',
73+
'drupal site:npm %s',
74+
'drupal site:grunt %s',
75+
'drupal site:settings:db %s',
76+
'drupal site:phpunit:setup %s',
77+
'drupal site:behat:setup %s',
78+
'drupal site:settings:memcache %s',
79+
'drupal site:db:import %s',
8080
];
8181

8282
foreach ($commands as $item) {
@@ -103,7 +103,7 @@ protected function execute(InputInterface $input, OutputInterface $output) {
103103
}
104104

105105
protected function process($command) {
106-
$this->process = new Process($command, null, null, 'subscriptions');
106+
$this->process = new Process($command);
107107
//$this->process->setWorkingDirectory($this->destination);
108108
$this->process->enableOutput();
109109
$this->process->setTimeout(null);

0 commit comments

Comments
 (0)