Codebase list golang-github-vbatts-go-mtree / debian/0.4.4-2 updatefuncs_unsupported.go
debian/0.4.4-2

Tree @debian/0.4.4-2 (Download .tar.gz)

updatefuncs_unsupported.go @debian/0.4.4-2raw · history · blame

// +build !linux

package mtree

import (
	"os"
)

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