Skip to content

Commit

Permalink
Fixing incorrect call to drupal:install. (#1557)
Browse files Browse the repository at this point in the history
  • Loading branch information
grasmash authored May 31, 2017
1 parent 6f85a49 commit 56587dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Robo/Commands/Setup/BuildCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function setup() {
$status_code = $this->invokeCommands([
'setup:build',
'setup:hash-salt',
'internal:drupal:install',
'setup:drupal:install',
'install-alias',
]);
return $status_code;
Expand All @@ -43,7 +43,7 @@ public function setup() {
*/
public function drupalInstall() {
$status_code = $this->invokeCommands([
'drupal:install',
'internal:drupal:install',
]);
if ($status_code) {
return $status_code;
Expand Down

0 comments on commit 56587dd

Please sign in to comment.