Skip to content

Commit

Permalink
remove config from PublishCommand
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi committed Aug 23, 2023
1 parent 037b3cf commit bcc2972
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Console/PublishCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,9 @@ class PublishCommand extends Command
public function handle()
{
// publish Sky files
$this->callSilent('vendor:publish', ['--tag' => 'zeus-sky-config', '--force' => $this->option('force')]);
$this->callSilent('vendor:publish', ['--tag' => 'zeus-sky-migrations', '--force' => $this->option('force')]);
$this->callSilent('vendor:publish', ['--tag' => 'zeus-sky-translations', '--force' => $this->option('force')]);

$this->callSilent('vendor:publish', ['--tag' => 'zeus-sky-seeder', '--force' => $this->option('force')]);
$this->callSilent('vendor:publish', ['--tag' => 'zeus-sky-factories', '--force' => $this->option('force')]);

// publish Zeus files
$this->callSilent('vendor:publish', ['--tag' => 'zeus-config', '--force' => $this->option('force')]);
$this->callSilent('vendor:publish', ['--tag' => 'zeus-views', '--force' => $this->option('force')]);
Expand Down

0 comments on commit bcc2972

Please sign in to comment.