Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
#866 callSilentl issue
Browse files Browse the repository at this point in the history
  • Loading branch information
fherryfherry authored Oct 10, 2017
1 parent 9263685 commit a46028f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/commands/CrudboosterUpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ public function handle()
$this->info('Updating: ');

$this->info('Publishing CRUDBooster needs file...');
$this->callSilent('vendor:publish');
$this->callSilent('vendor:publish',['--tag'=>'cb_migration','--force'=>true]);
$this->callSilent('vendor:publish',['--tag'=>'cb_lfm','--force'=>true]);
$this->callSilent('vendor:publish',['--tag'=>'cb_localization','--force'=>true]);
$this->call('vendor:publish');
$this->call('vendor:publish',['--tag'=>'cb_migration','--force'=>true]);
$this->call('vendor:publish',['--tag'=>'cb_lfm','--force'=>true]);
$this->call('vendor:publish',['--tag'=>'cb_localization','--force'=>true]);

$configLFM = config_path('lfm.php');
$configLFM = file_get_contents($configLFM);
Expand All @@ -70,7 +70,7 @@ public function handle()
if (!class_exists('CBSeeder')) {
require_once __DIR__.'/../database/seeds/CBSeeder.php';
}
$this->callSilent('db:seed',['--class' => 'CBSeeder']);
$this->call('db:seed',['--class' => 'CBSeeder']);

$this->info('Clearing Cache...');
Cache::flush();
Expand Down

0 comments on commit a46028f

Please sign in to comment.