mirror of
https://github.com/mikefarah/yq.git
synced 2025-02-05 13:33:36 +00:00
32af402508
Correct the filename pkg/yqlib/chown_not_linux.go to escape the default OS detection in filename format `*_GOOS[_test].go`. Add an extra word after `linux` to resolve the issue. pkg/yqlib/chown_not_linux_os.go Signed-off-by: Bhargav Ravuri <vaguecoder0to.n@gmail.com> Signed-off-by: Bhargav Ravuri <vaguecoder0to.n@gmail.com>
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
|
|
}
|