Codebase list golang-github-vbatts-go-mtree / e9c91572-fbfa-47cf-bc70-c15effeb0253/main updatefuncs_unsupported.go
e9c91572-fbfa-47cf-bc70-c15effeb0253/main

Tree @e9c91572-fbfa-47cf-bc70-c15effeb0253/main (Download .tar.gz)

updatefuncs_unsupported.go @e9c91572-fbfa-47cf-bc70-c15effeb0253/mainraw · history · blame

// +build !linux

package mtree

import (
	"os"
)

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