New: Removed chown and simplified chmod options for linux/osx

Closes #3760
Closes #3752
This commit is contained in:
Arthur Bols
2020-06-07 19:05:25 +02:00
committed by Qstick
parent 30def1f53a
commit 4b25ef6deb
19 changed files with 218 additions and 150 deletions
@@ -125,7 +125,7 @@ namespace NzbDrone.Update.UpdateEngine
// Set executable flag on app
if (OsInfo.IsOsx || (OsInfo.IsLinux && PlatformInfo.IsNetCore))
{
_diskProvider.SetPermissions(Path.Combine(installationFolder, "Radarr"), "0755", null, null);
_diskProvider.SetPermissions(Path.Combine(installationFolder, "Radarr"), "0755");
}
}
catch (Exception e)