diff --git a/pkg/system/utimes_unsupported.go b/pkg/system/utimes_unsupported.go deleted file mode 100644 index b6c36339df..0000000000 --- a/pkg/system/utimes_unsupported.go +++ /dev/null @@ -1,10 +0,0 @@ -//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 -}