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