Files
nomad/vendor/github.com/docker/docker/pkg/system/utimes_darwin.go
2016-05-28 12:01:56 +02:00

9 lines
181 B
Go

package system
import "syscall"
// LUtimesNano is not supported by darwin platform.
func LUtimesNano(path string, ts []syscall.Timespec) error {
return ErrNotSupportedPlatform
}