From 519242aead6bce056c1a682641e65fe6816bc4fc Mon Sep 17 00:00:00 2001 From: jekkos-t520 Date: Tue, 25 Feb 2020 22:38:34 +0100 Subject: [PATCH] Set copy permissions to 775 --- bin/install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install.php b/bin/install.php index 9d805bcc1..3829325b6 100755 --- a/bin/install.php +++ b/bin/install.php @@ -253,7 +253,7 @@ class Installer foreach ($iterator as $file) { if ($file->isDir()) { - @mkdir($dst . '/' . $iterator->getSubPathName(), 0777, TRUE); + @mkdir($dst . '/' . $iterator->getSubPathName(), 0775, TRUE); } else { $success = copy($file, $dst . '/' . $iterator->getSubPathName());