Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/f831dbd789db97506f574df6c4ba274f59a13add You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from Sonarr/osx-package-execute

Set permissions on Sonarr.app (OS X)
pull/234/merge
Mark McDowall 10 years ago
commit f831dbd789

@ -91,6 +91,12 @@ namespace NzbDrone.Update.UpdateEngine
_logger.Info("Copying new files to target folder");
_diskProvider.CopyFolder(_appFolderInfo.GetUpdatePackageFolder(), installationFolder);
// Set executable flag on SOnarr app
if (OsInfo.IsOsx)
{
_diskProvider.SetPermissions(Path.Combine(installationFolder, "Sonarr"), "0755", null, null);
}
}
catch (Exception e)
{

Loading…
Cancel
Save