1
0
Fork 0
mirror of https://github.com/vbatts/go-mtree.git synced 2024-09-20 17:40:25 +00:00
go-mtree/updatefuncs_unsupported.go

13 lines
169 B
Go
Raw Normal View History

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