From a2090f544527525a1343b4804e5354e976ae4cfb Mon Sep 17 00:00:00 2001 From: Shlee Date: Wed, 15 Jun 2022 19:32:51 +0930 Subject: [PATCH] Update Installer.php --- app/Console/Commands/Installer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Console/Commands/Installer.php b/app/Console/Commands/Installer.php index 8dd7df4be..f6b8b7373 100644 --- a/app/Console/Commands/Installer.php +++ b/app/Console/Commands/Installer.php @@ -112,6 +112,7 @@ class Installer extends Command protected function envCreate() { $this->line(''); + $this->info('Creating .env if required'); if(!file_exists(app()->environmentFilePath())) { exec('cp .env.example .env'); }