Skip to content

Commit

Permalink
Merge pull request #143 from lara-zeus/fix-command
Browse files Browse the repository at this point in the history
remove config from `PublishCommand`
  • Loading branch information
atmonshi authored Aug 23, 2023
2 parents 037b3cf + bcc2972 commit 83d687b
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 83d687b

Please sign in to comment.