]> _ Git - cubist_cms-back.git/commitdiff
wip #3436
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Wed, 26 Feb 2020 16:30:42 +0000 (17:30 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Wed, 26 Feb 2020 16:30:42 +0000 (17:30 +0100)
src/app/Console/Commands/InstallCommand.php
src/app/Console/Commands/UpdateCommand.php

index 8511642007fc6f13f319506e581f43bbf4f37834..3411686e91d4038e6ed38516c309a8ef0993d797 100644 (file)
@@ -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
index 9d3982e36de6358351629eace2fb2aae8fbc7b3e..98e566c7439ab545f6c535375f18034166ce76a1 100644 (file)
@@ -38,6 +38,6 @@ class UpdateCommand extends CubistCommand
 
             $this->progressBar->advance();
         }
-        $this->info(" Cubist successfully installed.");
+        $this->info(" Cubist successfully updated.");
     }
 }