Codebase list golang-github-vbatts-go-mtree / 8feeab77-98f0-4ffb-a3fc-f435f67cd7f2/main updatefuncs_unsupported.go
8feeab77-98f0-4ffb-a3fc-f435f67cd7f2/main

Tree @8feeab77-98f0-4ffb-a3fc-f435f67cd7f2/main (Download .tar.gz)

updatefuncs_unsupported.go @8feeab77-98f0-4ffb-a3fc-f435f67cd7f2/mainraw · history · blame

// +build !linux

package mtree

import (
	"os"
)

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