Skip to content
This repository has been archived by the owner on Apr 5, 2022. It is now read-only.

Commit

Permalink
[Upg] update command : add publishing config
Browse files Browse the repository at this point in the history
  • Loading branch information
MrJuliuss committed Nov 28, 2013
1 parent 7b71b0c commit 18a0913
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/commands/UpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ public function fire()
{
$this->info('## Syntara Update ##');

// publish sentry config
$this->call('config:publish', array('package' => 'cartalyst/sentry' ) );

// publish syntara config
$this->call('config:publish', array('package' => 'mrjuliuss/syntara' ) );

// publish syntara assets
$this->call('asset:publish', array('package' => 'mrjuliuss/syntara' ) );

Expand Down

2 comments on commit 18a0913

@GrahamCampbell
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why did you do this? I removed this because publishing config will deleted existing config. If you publish config, this command is no different to the install command.

@GrahamCampbell
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See #38.

Please sign in to comment.