1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-09 00:00:02 +01:00

add missing Node.isNewer method on windows

This commit is contained in:
Marcelo Pires 2015-03-21 00:39:07 +00:00
parent 865d315ad6
commit f0d160808c

View file

@ -17,3 +17,7 @@ func (node *Node) createCharDevAt(path string) error {
func (node *Node) createFifoAt(path string) error {
return nil
}
func (node *Node) isNewer(path string, fi os.FileInfo) bool {
return false
}