mirror of
https://github.com/Radarr/Radarr
synced 2025-12-30 12:13:21 +01:00
Fixed: Set correct permissions on Radarr.Update before starting
This commit is contained in:
parent
bb721272ca
commit
f90133d588
1 changed files with 1 additions and 1 deletions
|
|
@ -149,7 +149,7 @@ private bool InstallUpdate(UpdatePackage updatePackage)
|
|||
// Set executable flag on update app
|
||||
if (OsInfo.IsOsx || (OsInfo.IsLinux && PlatformInfo.IsNetCore))
|
||||
{
|
||||
_diskProvider.SetPermissions(_appFolderInfo.GetUpdateClientExePath(updatePackage.Runtime), "755", null);
|
||||
_diskProvider.SetFilePermissions(_appFolderInfo.GetUpdateClientExePath(updatePackage.Runtime), "755", null);
|
||||
}
|
||||
|
||||
_logger.Info("Starting update client {0}", _appFolderInfo.GetUpdateClientExePath(updatePackage.Runtime));
|
||||
|
|
|
|||
Loading…
Reference in a new issue