Skip to content

Commit

Permalink
[site:install] Allow empty db password (#3027)
Browse files Browse the repository at this point in the history
  • Loading branch information
rpsu authored and jmolivas committed Dec 19, 2016
1 parent 0f388ef commit 38e26f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/Site/InstallCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$dbHost = $input->getOption('db-host')?:'127.0.0.1';
$dbName = $input->getOption('db-name')?:'drupal_'.time();
$dbUser = $input->getOption('db-user')?:'root';
$dbPass = $input->getOption('db-pass')?:'root';
$dbPass = $input->getOption('db-pass');
$dbPrefix = $input->getOption('db-prefix');
$dbPort = $input->getOption('db-port')?:'3306';
$force = $input->getOption('force');
Expand Down

0 comments on commit 38e26f8

Please sign in to comment.