Codebase list golang-github-vbatts-go-mtree / 6ce12855-a570-4aee-a94e-a5ccab88d60f/main updatefuncs_unsupported.go
6ce12855-a570-4aee-a94e-a5ccab88d60f/main

Tree @6ce12855-a570-4aee-a94e-a5ccab88d60f/main (Download .tar.gz)

updatefuncs_unsupported.go @6ce12855-a570-4aee-a94e-a5ccab88d60f/mainraw · history · blame

// +build !linux

package mtree

import (
	"os"
)

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