mirror of
https://github.com/containers/podman.git
synced 2025-06-16 06:29:16 +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>
12 lines
159 B
Go
12 lines
159 B
Go
// +build linux darwin freebsd netbsd openbsd
|
|
|
|
package tail
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func OpenFile(name string) (file *os.File, err error) {
|
|
return os.Open(name)
|
|
}
|