mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
13 lines
127 B
Go
13 lines
127 B
Go
//go:build !linux
|
|
|
|
package yqlib
|
|
|
|
import (
|
|
"io/fs"
|
|
"os"
|
|
)
|
|
|
|
func changeOwner(_ fs.FileInfo, _ *os.File) error {
|
|
return nil
|
|
}
|