Fixed: Remove Plist Fix to prevent Linux Core update failures

pull/2/head
Qstick 5 years ago committed by GitHub
parent 3c380954ec
commit dd00c9b53e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -120,13 +120,6 @@ namespace NzbDrone.Update.UpdateEngine
if (OsInfo.IsOsx || (OsInfo.IsLinux && PlatformInfo.IsNetCore))
{
_diskProvider.SetPermissions(Path.Combine(installationFolder, "Radarr"), "0755", null, null);
var plistPath = Path.Combine(installationFolder, "..", "Info.plist");
var plistContents = File.ReadAllText(plistPath);
if (plistContents.Contains("Sonarr"))
{
plistContents.Replace("Sonarr", "Radarr");
File.WriteAllText(plistPath, plistContents);
}
}
}
catch (Exception e)

Loading…
Cancel
Save