cert-manager/vendor/github.com/hpcloud/tail/tail_windows.go
James Munnelly e72dbef9e6 Run ./hack/update-vendor.sh
Signed-off-by: James Munnelly <james@munnelly.eu>
2019-04-14 15:51:43 +01:00

13 lines
191 B
Go

// +build windows
package tail
import (
"github.com/hpcloud/tail/winfile"
"os"
)
func OpenFile(name string) (file *os.File, err error) {
return winfile.OpenFile(name, os.O_RDONLY, 0)
}