From f0d160808ca29e4ef464aa9d388fe6e672cadf19 Mon Sep 17 00:00:00 2001 From: Marcelo Pires Date: Sat, 21 Mar 2015 00:39:07 +0000 Subject: [PATCH] add missing Node.isNewer method on windows --- node_windows.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/node_windows.go b/node_windows.go index 884c33d1c..8b613141b 100644 --- a/node_windows.go +++ b/node_windows.go @@ -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 +}