Codebase list golang-github-vbatts-go-mtree / 39dce7f4-4f64-46ae-91cf-5d7c2c236257/upstream updatefuncs_unsupported.go
39dce7f4-4f64-46ae-91cf-5d7c2c236257/upstream

Tree @39dce7f4-4f64-46ae-91cf-5d7c2c236257/upstream (Download .tar.gz)

updatefuncs_unsupported.go @39dce7f4-4f64-46ae-91cf-5d7c2c236257/upstream

1cf0881
 
 
 
 
 
 
 
 
 
 
// +build !linux

package mtree

import (
	"os"
)

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