1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-07 23:33:52 +00:00

Update client is now moved rather than copied.

This commit is contained in:
kay.one 2011-11-21 20:42:05 -08:00
parent 03fb405c2e
commit 54e5874770
2 changed files with 2 additions and 2 deletions

View file

@ -97,7 +97,7 @@ public void Should_copy_update_client_to_root_of_sandbox()
//Assert
Mocker.GetMock<DiskProvider>().Verify(
c => c.CopyDirectory(updateClientFolder, SANDBOX_FOLDER));
c => c.MoveDirectory(updateClientFolder, SANDBOX_FOLDER));
}
[Test]

View file

@ -68,7 +68,7 @@ public virtual void Start(ProgressNotification notification, int targetId, int s
logger.Info("Preparing client");
notification.CurrentMessage = "Preparing to start Update";
_diskProvider.CopyDirectory(_enviromentProvider.GetUpdateClientFolder(), _enviromentProvider.GetUpdateSandboxFolder());
_diskProvider.MoveDirectory(_enviromentProvider.GetUpdateClientFolder(), _enviromentProvider.GetUpdateSandboxFolder());
logger.Info("Starting update client");