Skip to content
Snippets Groups Projects
Commit 94ac1a63 authored by Maddy Chellathurai's avatar Maddy Chellathurai
Browse files

MAGETWO-48291: [Github] Permissions Error When Running `bin/magento setup:upgrade`

- skipping writable checks for symlinked files/folders
parent f2efe768
No related merge requests found
......@@ -151,7 +151,7 @@ class FilePermissions
try {
foreach ($directoryIterator as $subDirectory) {
if (!$subDirectory->isWritable()) {
if (!$subDirectory->isWritable() && !$subDirectory->isLink()) {
$this->nonWritablePathsInDirectories[$directory][] = $subDirectory;
$foundNonWritable = true;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment