mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-10-31 22:36:38 +00:00
3fe21921b5
Use UtimesNanoAt from golang.org/x/sys/unix instead of manually crafting the syscall. Since UtimesNanoAt is provided for all unix-like OSes, factor out lchtimes to its own file with appropriate build tags. This allows to make use of it on darwin, dragonfly, freebsd, openbsd, netbsd and solaris in addition to linux. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
11 lines
137 B
Go
11 lines
137 B
Go
// +build windows
|
|
|
|
package mtree
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func lchtimes(name string, atime time.Time, mtime time.Time) error {
|
|
return nil
|
|
}
|