Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Fixing call to non-existant drupal:update command. #1614

Merged
merged 1 commit into from
Jun 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Robo/Commands/Deploy/DeployCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -582,7 +582,7 @@ public function updateSites() {
public function installDrupal() {
$status_code = $this->invokeCommands([
'internal:drupal:install',
'drupal:update',
'deploy:update',
]);
if ($status_code) {
return $status_code;
Expand Down