k3s/vendor/github.com/natefinch/lumberjack/chown.go

12 lines
114 B
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
// +build !linux
package lumberjack
import (
"os"
)
func chown(_ string, _ os.FileInfo) error {
return nil
}