k3s/vendor/gopkg.in/natefinch/lumberjack.v2/chown.go
Darren Shepherd fa08d6076c Update vendor
2019-01-11 21:58:27 -07:00

12 lines
114 B
Go

// +build !linux
package lumberjack
import (
"os"
)
func chown(_ string, _ os.FileInfo) error {
return nil
}