Update vendor

This commit is contained in:
Ettore Di Giacinto
2020-06-12 17:58:13 +02:00
parent 6d68ed073d
commit 6b8f412138
134 changed files with 6189 additions and 3165 deletions

11
vendor/github.com/nxadm/tail/tail_posix.go generated vendored Normal file
View File

@@ -0,0 +1,11 @@
// +build !windows
package tail
import (
"os"
)
func OpenFile(name string) (file *os.File, err error) {
return os.Open(name)
}