Remove invalid reference to Artisan
This commit is contained in:
parent
f673ef8222
commit
016ce1fbf6
|
@ -52,7 +52,7 @@ class Install extends Command
|
||||||
]);
|
]);
|
||||||
|
|
||||||
copy($basePath . '/.env.example', $basePath . '/.env');
|
copy($basePath . '/.env.example', $basePath . '/.env');
|
||||||
Artisan::call('key:generate');
|
$this->call('key:generate');
|
||||||
|
|
||||||
|
|
||||||
// Command stack
|
// Command stack
|
||||||
|
@ -66,7 +66,6 @@ class Install extends Command
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
||||||
$npm->mustRun();
|
$npm->mustRun();
|
||||||
$progress->advance();
|
$progress->advance();
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,5 @@ sleep 3
|
||||||
composer install
|
composer install
|
||||||
|
|
||||||
echo "Full installation starting!"
|
echo "Full installation starting!"
|
||||||
|
sleep 3
|
||||||
php artisan application:install
|
php artisan application:install
|
||||||
|
|
Loading…
Reference in New Issue