Codebase list golang-github-vbatts-go-mtree / 6a40d68 updatefuncs_unsupported.go
6a40d68

Tree @6a40d68 (Download .tar.gz)

updatefuncs_unsupported.go @6a40d68raw · history · blame

// +build !linux

package mtree

import (
	"os"
)

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