mirror of
https://github.com/mudler/luet.git
synced 2025-06-28 16:28:06 +00:00
12 lines
151 B
Go
12 lines
151 B
Go
// +build !linux
|
|
|
|
package mtree
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func xattrUpdateKeywordFunc(path string, kv KeyVal) (os.FileInfo, error) {
|
|
return os.Lstat(path)
|
|
}
|