Skip to content

Commit

Permalink
remove --force for copy/db/down when triggered via copy/all/down
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Stark committed May 13, 2020
1 parent ae4cf30 commit d59fa88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Actions/AllDownAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function run(string $config = null): int
return ExitCode::UNSPECIFIED_ERROR;
}

if (\Craft::$app->runAction('copy/db/down', ['interactive' => true, 'force' => true]) !== 0) {
if (\Craft::$app->runAction('copy/db/down', ['interactive' => true]) !== 0) {
$this->errorBlock('Failed to copy the database');
return ExitCode::UNSPECIFIED_ERROR;
}
Expand Down

0 comments on commit d59fa88

Please sign in to comment.