1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-23 11:43:50 +00:00

Don't check md5sum after download with --size-only - fixes #75

This commit is contained in:
Nick Craig-Wood
2015-06-09 13:18:40 +01:00
parent e04acb09ce
commit 97dced6a0b

View File

@@ -193,6 +193,7 @@ tryAgain:
}
// Verify md5sums are the same after transfer - ignoring blank md5sums
if !Config.SizeOnly {
srcMd5sum, md5sumErr := src.Md5sum()
if md5sumErr != nil {
Stats.Error()
@@ -210,6 +211,7 @@ tryAgain:
return
}
}
}
Debug(src, actionTaken)
}