Skip to content

Commit

Permalink
Merge branch 'erfanimani-bug/fix-permissions'
Browse files Browse the repository at this point in the history
  • Loading branch information
osrecio committed Apr 16, 2020
2 parents 0bbaa9a + 174e303 commit a128352
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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',
'cd {{magento_dir}} && chmod -R g+w var vendor pub/static pub/media app/etc && chmod u+x bin/magento'
'chmod -R g+w var vendor pub/static pub/media app/etc && chmod u+x bin/magento'
);

desc('Generate Magento Files');
Expand Down
3 changes: 2 additions & 1 deletion recipe/magento_2_2/artifact.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
task('artifact:upload', function () {
upload(get('artifact_path'), '{{release_path}}');
});

task('artifact:extract', '
tar -xzf {{release_path}}/{{artifact_file}} -C {{release_path}};
tar -xzpf {{release_path}}/{{artifact_file}} -C {{release_path}};
rm -rf {{release_path}}/{{artifact_file}}
');

0 comments on commit a128352

Please sign in to comment.