bug fix: fixPermissions

This commit is contained in:
Usman Nasir
2020-04-16 12:16:46 +05:00
parent 10db2f1439
commit 297da32c6b

View File

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