Skip to content

Commit 73453aa

Browse files
jensschulzeenzolutions
authored andcommitted
fix: allow empty db-prefix (#4189)
Empty --db-prefix must not provoke db-prefix question Issue: #4189
1 parent 83df937 commit 73453aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Command/Site/InstallCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ function ($profile) {
323323
}
324324

325325
// --db-prefix option
326-
if (!$input->getOption('db-prefix')) {
326+
if ($input->getOption('db-prefix') === null) {
327327
$input->setOption('db-prefix', $this->dbPrefixQuestion());
328328
}
329329
}

0 commit comments

Comments
 (0)