mirror of
https://github.com/containers/podman.git
synced 2025-08-06 19:44:14 +08:00
![dependabot-preview[bot]](/assets/img/avatar_default.png)
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.10.0 to 1.10.1. - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.10.0...v1.10.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
13 lines
189 B
Go
13 lines
189 B
Go
// +build windows
|
|
|
|
package tail
|
|
|
|
import (
|
|
"github.com/nxadm/tail/winfile"
|
|
"os"
|
|
)
|
|
|
|
func OpenFile(name string) (file *os.File, err error) {
|
|
return winfile.OpenFile(name, os.O_RDONLY, 0)
|
|
}
|