From 62221c05a743d5728f527bccb14ef26bb0e36186 Mon Sep 17 00:00:00 2001 From: Pig Fang Date: Thu, 12 Sep 2019 12:27:13 +0800 Subject: [PATCH] Do not generate random salt via CLI installation --- app/Console/Commands/BsInstallCommand.php | 1 - 1 file changed, 1 deletion(-) diff --git a/app/Console/Commands/BsInstallCommand.php b/app/Console/Commands/BsInstallCommand.php index 7fb1a7df..3295ba0d 100644 --- a/app/Console/Commands/BsInstallCommand.php +++ b/app/Console/Commands/BsInstallCommand.php @@ -24,7 +24,6 @@ class BsInstallCommand extends Command if (! $this->getLaravel()->runningUnitTests()) { // @codeCoverageIgnoreStart $this->call('key:generate'); - $this->call('salt:random'); $this->call('jwt:secret', ['--no-interaction' => true]); $this->call('passport:keys', ['--no-interaction' => true]); // @codeCoverageIgnoreEnd