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

Tree @cme/main (Download .tar.gz)

updatefuncs_unsupported.go @cme/main

1cf0881
 
 
 
 
 
 
 
 
 
 
// +build !linux

package mtree

import (
	"os"
)

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