mirror of https://github.com/sbt/sbt.git
Use IO.copyModifiedTime() in place of IO.copyLastModified()
This commit is contained in:
parent
8c7b781d3f
commit
2129f8ceb5
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue