Skip to content

Commit

Permalink
🐛 Fix composer issue after updating
Browse files Browse the repository at this point in the history
  • Loading branch information
MarceauKa committed Nov 5, 2019
1 parent ca8a74d commit 7a7218d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Console/Commands/Update.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public function handle()

// Composer
$this->comment('Composer install');
exec('composer install --no-dev -o >> /dev/null 2>&1');
exec('composer install --no-dev >> /dev/null 2>&1');
exec('composer dump-autoload -o >> /dev/null 2>&1');

// Migrations
$this->callSilent('migrate', [
Expand Down
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

## Fixed

- Fix composer issue after updating
- PasswordGenerator border radius

# 1.2.25
Expand Down

0 comments on commit 7a7218d

Please sign in to comment.