Osx updater now updates plist file to point to the correct executable binary.

pull/2/head
Leonardo Galli 7 years ago
parent 6210c5b8f8
commit 5200758200

@ -120,6 +120,13 @@ namespace NzbDrone.Update.UpdateEngine
if (OsInfo.IsOsx)
{
_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