We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45d27bd commit d745b40Copy full SHA for d745b40
src/Robo/Plugin/Commands/DevelopmentModeBaseCommands.php
@@ -78,8 +78,8 @@ public function databaseRefreshDdev(string $siteName = 'default'): Result
78
$this->say("Importing $dbPath");
79
$this->taskExec('ddev')
80
->arg('import-db')
81
- ->option('target-db', $siteName == 'default' ? 'db' : $siteName)
82
- ->option('src', $dbPath)
+ ->option('database', $siteName == 'default' ? 'db' : $siteName)
+ ->option('file', $dbPath)
83
->run();
84
85
$this->say("Deleting $dbPath");
0 commit comments