Skip to content

Commit

Permalink
Merge branch 'hotfix/PR#54'
Browse files Browse the repository at this point in the history
* hotfix/PR#54:
  Hotfix over files:permissions task to change magento_dir variable if setted
  • Loading branch information
osrecio committed Apr 23, 2020
2 parents cdc2887 + 422ab21 commit 98c66d7
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,29 @@ and this project adheres to [Semantic Version](http://semver.org/spec/v2.0.0.htm

### Removed

## [2.7.1] - 16-04-2020
### Changed
* fix task `files:permissions` to change to `magento_dir` folder before set permissions

## [2.7.0] - 05-12-2019
### Added
* task `cache:enable` to enable modules during deployment

### Changed
* Fixes wrong permissions after extracting archive

## [2.6.0] - 05-12-2019
### Changed
* fix Grumphp Tests

## [2.5.0] - 13-03-2019
### Added
* task `files:remove-generated` to delete generated folder content

## [2.4.0] - 25-02-2019
### Changed
* `database:upgrade` to split `schema:upgrade` and `data:upgrade`

## [2.3.0] - 18-12-2018
### Changed

Expand Down
2 changes: 1 addition & 1 deletion recipe/magento_2_1/files.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
task('files:static_assets', '{{bin/php}} {{magento_bin}} setup:static-content:deploy {{languages}} {{static_deploy_options}}');
task(
'files:permissions',
'chmod -R g+w var vendor pub/static pub/media app/etc && chmod u+x bin/magento'
'cd {{magento_dir}} && chmod -R g+w var vendor pub/static pub/media app/etc && chmod u+x bin/magento'
);

desc('Generate Magento Files');
Expand Down

0 comments on commit 98c66d7

Please sign in to comment.