Use IO.copyModifiedTime() in place of IO.copyLastModified()

This commit is contained in:
Antonio Cunei 2017-12-05 02:44:46 +01:00 committed by Eugene Yokota
parent 8c7b781d3f
commit 2129f8ceb5
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ object Sync {
else if (!target.exists) // we don't want to update the last modified time of an existing directory
{
IO.createDirectory(target)
IO.copyLastModified(source, target)
IO.copyModifiedTime(source, target)
}
def noDuplicateTargets(relation: Relation[File, File]): Unit = {