mirror of
https://github.com/containers/podman.git
synced 2025-06-15 22:04:32 +08:00

* Make sure that all vendored dependencies are in sync with the code and the vendor.conf by running `make vendor` with a follow-up status check of the git tree. * Vendor ginkgo and gomega to include the test dependencies. Signed-off-by: Chris Evic <cevich@redhat.com> Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
13 lines
191 B
Go
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)
|
|
}
|