yq/pkg/yqlib/chown_not_linux.go
2022-12-17 11:05:08 +11:00

13 lines
133 B
Go

//go:build !linux
package yqlib
import (
"io/fs"
"os"
)
func changeOwner(info fs.FileInfo, file *os.File) error {
return nil
}