mirror of
https://github.com/docker/cli.git
synced 2026-01-26 15:41:42 +03:00
Signed-off-by: allencloud <allen.sun@daocloud.io> Upstream-commit: bd11a269bc114334cf6160ba38e396f8f0e3aecd Component: engine
11 lines
211 B
Go
11 lines
211 B
Go
// +build !linux,!freebsd
|
|
|
|
package system
|
|
|
|
import "syscall"
|
|
|
|
// LUtimesNano is only supported on linux and freebsd.
|
|
func LUtimesNano(path string, ts []syscall.Timespec) error {
|
|
return ErrNotSupportedPlatform
|
|
}
|