Codebase list golang-github-vbatts-go-mtree / bd45743a-c878-4d01-97da-094c1925934b/main updatefuncs_unsupported.go
bd45743a-c878-4d01-97da-094c1925934b/main

Tree @bd45743a-c878-4d01-97da-094c1925934b/main (Download .tar.gz)

updatefuncs_unsupported.go @bd45743a-c878-4d01-97da-094c1925934b/mainraw · history · blame

// +build !linux

package mtree

import (
	"os"
)

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