From 016ce1fbf62fe197c2221782372a74aef1617fbd Mon Sep 17 00:00:00 2001 From: Miguel Nogueira Date: Thu, 9 Jul 2020 05:12:18 +0100 Subject: [PATCH] Remove invalid reference to Artisan --- app/Console/Commands/Install.php | 3 +-- install.sh | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/Install.php b/app/Console/Commands/Install.php index f048fd7..c8a29f7 100644 --- a/app/Console/Commands/Install.php +++ b/app/Console/Commands/Install.php @@ -52,7 +52,7 @@ class Install extends Command ]); copy($basePath . '/.env.example', $basePath . '/.env'); - Artisan::call('key:generate'); + $this->call('key:generate'); // Command stack @@ -66,7 +66,6 @@ class Install extends Command try { - $npm->mustRun(); $progress->advance(); diff --git a/install.sh b/install.sh index 56cc55e..6bdca14 100644 --- a/install.sh +++ b/install.sh @@ -5,4 +5,5 @@ sleep 3 composer install echo "Full installation starting!" +sleep 3 php artisan application:install