1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2024-12-22 15:57:07 +00:00
restic/internal/fs/node_unix.go
2024-08-31 18:40:36 +02:00

12 lines
153 B
Go

//go:build !windows
// +build !windows
package fs
import (
"os"
)
func lchown(name string, uid, gid int) error {
return os.Lchown(name, uid, gid)
}