From: Vincent Vanwaelscappel Date: Wed, 26 Feb 2020 16:30:42 +0000 (+0100) Subject: wip #3436 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=02ec0b5a9df2c645203003d03ab12e7a0df02e8c;p=cubist_cms-back.git wip #3436 --- diff --git a/src/app/Console/Commands/InstallCommand.php b/src/app/Console/Commands/InstallCommand.php index 8511642..3411686 100644 --- a/src/app/Console/Commands/InstallCommand.php +++ b/src/app/Console/Commands/InstallCommand.php @@ -18,6 +18,7 @@ class InstallCommand extends CubistCommand $devPackages = ['barryvdh/laravel-ide-helper', 'filp/whoops', 'laravel/tinker:^2.1']; $commands = [ + 'Update Cubist' => ['php artisan cubist:update'], 'Install backpack' => ['php artisan backpack:install'], 'Install backpack addons' => [ // BackupManager diff --git a/src/app/Console/Commands/UpdateCommand.php b/src/app/Console/Commands/UpdateCommand.php index 9d3982e..98e566c 100644 --- a/src/app/Console/Commands/UpdateCommand.php +++ b/src/app/Console/Commands/UpdateCommand.php @@ -38,6 +38,6 @@ class UpdateCommand extends CubistCommand $this->progressBar->advance(); } - $this->info(" Cubist successfully installed."); + $this->info(" Cubist successfully updated."); } }