mirror of
https://github.com/vbatts/go-mtree.git
synced 2024-11-05 08:25:58 +00:00
9 lines
146 B
Go
9 lines
146 B
Go
// +build !linux
|
|
|
|
package mtree
|
|
|
|
import "os"
|
|
|
|
func xattrUpdateKeywordFunc(path string, kv KeyVal) (os.FileInfo, error) {
|
|
return os.Lstat(path)
|
|
}
|