1
0
mirror of https://github.com/go-task/task.git synced 2024-12-23 02:04:38 +02:00
task/vendor/github.com/radovskyb/watcher/samefile.go
Andrey Nering 0f24fd593e update dependencies
- add watch
- remove fsnotify
- update others
2017-08-05 14:13:35 -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)
}