Codebase list golang-github-vbatts-go-mtree / fresh-snapshots/upstream updatefuncs_unsupported.go
fresh-snapshots/upstream

Tree @fresh-snapshots/upstream (Download .tar.gz)

updatefuncs_unsupported.go @fresh-snapshots/upstream

d1a96ae
1cf0881
 
 
 
 
 
 
 
 
 
 
//go:build !linux
// +build !linux

package mtree

import (
	"os"
)

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