k3s/vendor/gopkg.in/natefinch/lumberjack.v2/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
}