1
0
mirror of https://github.com/go-task/task.git synced 2025-12-26 00:31:38 +02:00
Files
Andrey Nering dfb804fe3f Update vendor/
2019-01-19 19:25:49 -02:00

10 lines
125 B
Go

// +build !windows
package watcher
import "os"
func sameFile(fi1, fi2 os.FileInfo) bool {
return os.SameFile(fi1, fi2)
}