Files
luet/vendor/github.com/vbatts/go-mtree/updatefuncs_unsupported.go
Ettore Di Giacinto 0f7ba8ce05 Update vendor
2021-10-29 16:12:26 +02:00

12 lines
151 B
Go

// +build !linux
package mtree
import (
"os"
)
func xattrUpdateKeywordFunc(path string, kv KeyVal) (os.FileInfo, error) {
return os.Lstat(path)
}