Skip to content

Commit 38e26f8

Browse files
rpsujmolivas
authored andcommitted
[site:install] Allow empty db password (#3027)
1 parent 0f388ef commit 38e26f8

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
@@ -391,7 +391,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
391391
$dbHost = $input->getOption('db-host')?:'127.0.0.1';
392392
$dbName = $input->getOption('db-name')?:'drupal_'.time();
393393
$dbUser = $input->getOption('db-user')?:'root';
394-
$dbPass = $input->getOption('db-pass')?:'root';
394+
$dbPass = $input->getOption('db-pass');
395395
$dbPrefix = $input->getOption('db-prefix');
396396
$dbPort = $input->getOption('db-port')?:'3306';
397397
$force = $input->getOption('force');

0 commit comments

Comments
 (0)