You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-09-16 09:26:36 +02:00
Update client is now moved rather than copied.
This commit is contained in:
@@ -97,7 +97,7 @@ namespace NzbDrone.Core.Test.JobTests
|
|||||||
|
|
||||||
//Assert
|
//Assert
|
||||||
Mocker.GetMock<DiskProvider>().Verify(
|
Mocker.GetMock<DiskProvider>().Verify(
|
||||||
c => c.CopyDirectory(updateClientFolder, SANDBOX_FOLDER));
|
c => c.MoveDirectory(updateClientFolder, SANDBOX_FOLDER));
|
||||||
}
|
}
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
|
@@ -68,7 +68,7 @@ namespace NzbDrone.Core.Providers.Jobs
|
|||||||
|
|
||||||
logger.Info("Preparing client");
|
logger.Info("Preparing client");
|
||||||
notification.CurrentMessage = "Preparing to start Update";
|
notification.CurrentMessage = "Preparing to start Update";
|
||||||
_diskProvider.CopyDirectory(_enviromentProvider.GetUpdateClientFolder(), _enviromentProvider.GetUpdateSandboxFolder());
|
_diskProvider.MoveDirectory(_enviromentProvider.GetUpdateClientFolder(), _enviromentProvider.GetUpdateSandboxFolder());
|
||||||
|
|
||||||
|
|
||||||
logger.Info("Starting update client");
|
logger.Info("Starting update client");
|
||||||
|
Reference in New Issue
Block a user