go-mtree/updatefuncs_unsupported.go

13 lines
169 B
Go

//go:build !linux
// +build !linux
package mtree
import (
"os"
)
func xattrUpdateKeywordFunc(path string, kv KeyVal) (os.FileInfo, error) {
return os.Lstat(path)
}