//go:build !linux && !darwin && !windows package fileops import ( "fmt" "runtime" ) func syncDirectory(path string) error { return fmt.Errorf("%w for %q on %s", ErrDirectorySyncUnsupported, path, runtime.GOOS) }