From 975f0a69c715d758d4bbed68bb17645d4f43a992 Mon Sep 17 00:00:00 2001 From: Miguel Nogueira Date: Sat, 19 Dec 2020 15:37:15 +0000 Subject: [PATCH] Removed now-unsupported message option --- app/Console/Commands/Install.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/Console/Commands/Install.php b/app/Console/Commands/Install.php index 18fb9a6..c3b21ae 100755 --- a/app/Console/Commands/Install.php +++ b/app/Console/Commands/Install.php @@ -61,9 +61,7 @@ class Install extends Command if (Storage::disk('local')->missing('INSTALLED')) { $this->info('[!! Welcome to Rasberry Teams !!]'); $this->info('>> Installing...'); - $this->call('down', [ - '--message' => 'Down for maintenance. We\'ll be right back!', - ]); + $this->call('down'); copy($basePath.'/.env.example', $basePath.'/.env'); $this->call('key:generate');