github.com/onsi/ginkgo v1.6.0

This commit is contained in:
Jordan Liggitt
2019-04-16 10:28:44 -04:00
parent 99e61466ab
commit 56b1963705
147 changed files with 5178 additions and 250 deletions

12
vendor/github.com/hpcloud/tail/tail_windows.go generated vendored Normal file
View File

@@ -0,0 +1,12 @@
// +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)
}