1
0
mirror of https://github.com/go-task/task.git synced 2025-03-29 21:57:04 +02:00
2018-06-24 10:40:44 -03:00

10 lines
125 B
Go

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