mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-14 15:18:06 +00:00
13 lines
133 B
Go
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
|
||
|
}
|