mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
Signed-off-by: Darren Stahl <darst@microsoft.com> Upstream-commit: 40b77af234319f02029368732249c2de0babb380 Component: engine
9 lines
181 B
Go
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
|
|
}
|