2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-04 01:50:48 +00:00

Fix timestamps

This commit is contained in:
Alexander Neumann 2018-08-23 22:22:34 +02:00
parent 7e28bf7e97
commit 8c91c51d1b

View File

@ -108,6 +108,9 @@ func runRecover(gopts GlobalOptions) error {
Name: id.Str(),
Mode: 0755,
Subtree: &subtreeID,
AccessTime: time.Now(),
ModTime: time.Now(),
ChangeTime: time.Now(),
}
tree.Insert(&node)
}