From ec8bfae2c1bbe665b9887632c34c083688af33c6 Mon Sep 17 00:00:00 2001 From: Sevan Nerse Date: Fri, 16 Oct 2020 12:06:56 +0300 Subject: [PATCH] prompting condition of --db-password is changed --- app/Console/Commands/Install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Install.php b/app/Console/Commands/Install.php index 5e3602ea8..a73a2cc71 100644 --- a/app/Console/Commands/Install.php +++ b/app/Console/Commands/Install.php @@ -155,7 +155,7 @@ class Install extends Command $this->db_username = $this->ask('What is the database username?', 'root'); } - if (empty($this->db_password)) { + if (!isset($this->db_password)) { $this->db_password = $this->secret('What is the database password?', ''); }