From 9ea20bac42cea79149c31ac55f28cbcd8269bf6b Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Mon, 3 Oct 2016 20:16:41 +0100 Subject: [PATCH] Fix accidentally committed test in move code --- fs/sync.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/sync.go b/fs/sync.go index d2e64878f..12d2cc154 100644 --- a/fs/sync.go +++ b/fs/sync.go @@ -214,7 +214,7 @@ func (s *syncCopyMove) pairChecker(in ObjectPairChan, out ObjectPairChan, wg *sy // If moving need to delete the files we don't need to copy if s.DoMove { // Delete src if no error on copy - //s.processError(DeleteFile(src)) + s.processError(DeleteFile(src)) } } }