Codebase list golang-github-vbatts-go-mtree / upstream/0.4.2 updatefuncs_unsupported.go
upstream/0.4.2

Tree @upstream/0.4.2 (Download .tar.gz)

updatefuncs_unsupported.go @upstream/0.4.2raw · history · blame

// +build !linux

package mtree

import (
	"os"
)

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