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/upstreamraw · history · blame

//go:build !linux
// +build !linux

package mtree

import (
	"os"
)

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