bug fix: fixPermissions

This commit is contained in:
Usman Nasir
2020-04-16 12:16:46 +05:00
parent cd229f2dd2
commit 0ee3d7b93c

View File

@@ -539,5 +539,5 @@ class FileManager:
command = 'chmod 755 %s' % (childs.path)
ProcessUtilities.popenExecutioner(command)
command = 'chmod %s:%s %s' % (externalApp, groupName, childs.path)
command = 'chown %s:%s %s' % (externalApp, groupName, childs.path)
ProcessUtilities.popenExecutioner(command)