go-mtree/updatefuncs_unsupported.go

10 lines
159 B
Go

// +build !linux
package mtree
import "os"
func xattrUpdateKeywordFunc(keyword Keyword, path, value string) (os.FileInfo, error) {
return os.Lstat(path)
}