mirror of
https://github.com/Radarr/Radarr
synced 2025-01-01 04:45:35 +00:00
Fix osx updater failing.
This commit is contained in:
parent
3c8162f1d6
commit
6e31f7220c
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
using System;
|
||||
using System;
|
||||
using System.IO;
|
||||
using NLog;
|
||||
using NzbDrone.Common.Disk;
|
||||
|
@ -119,7 +119,7 @@ public void Start(string installationFolder, int processId)
|
|||
// Set executable flag on Sonarr app
|
||||
if (OsInfo.IsOsx)
|
||||
{
|
||||
_diskProvider.SetPermissions(Path.Combine(installationFolder, "Sonarr"), "0755", null, null);
|
||||
_diskProvider.SetPermissions(Path.Combine(installationFolder, "Radarr"), "0755", null, null);
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
|
|
Loading…
Reference in a new issue