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