Codebase list golang-github-vbatts-go-mtree / scrub-obsolete/main updatefuncs_unsupported.go
scrub-obsolete/main

Tree @scrub-obsolete/main (Download .tar.gz)

updatefuncs_unsupported.go @scrub-obsolete/mainraw · history · blame

// +build !linux

package mtree

import (
	"os"
)

func xattrUpdateKeywordFunc(path string, kv KeyVal) (os.FileInfo, error) {
	return os.Lstat(path)
}