Codebase list golang-github-vbatts-go-mtree / b37d6dc7-7334-4ece-84e6-4b44d0746757/upstream updatefuncs_unsupported.go
b37d6dc7-7334-4ece-84e6-4b44d0746757/upstream

Tree @b37d6dc7-7334-4ece-84e6-4b44d0746757/upstream (Download .tar.gz)

updatefuncs_unsupported.go @b37d6dc7-7334-4ece-84e6-4b44d0746757/upstream

1cf0881
 
 
 
 
 
 
 
 
 
 
// +build !linux

package mtree

import (
	"os"
)

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