mirror of
				https://github.com/containers/podman.git
				synced 2025-10-31 10:00:01 +08:00 
			
		
		
		
	![dependabot-preview[bot]](/assets/img/avatar_default.png) 80390dd180
			
		
	
	80390dd180
	
	
	
		
			
			Bumps [github.com/onsi/ginkgo](https://github.com/onsi/ginkgo) from 1.15.0 to 1.15.1. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v1.15.0...v1.15.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
		
			
				
	
	
		
			18 lines
		
	
	
		
			463 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			463 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright (c) 2019 FOSS contributors of https://github.com/nxadm/tail
 | |
| // +build !windows
 | |
| 
 | |
| package tail
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| )
 | |
| 
 | |
| // Deprecated: this function is only useful internally and, as such,
 | |
| // it will be removed from the API in a future major release.
 | |
| //
 | |
| // OpenFile proxies a os.Open call for a file so it can be correctly tailed
 | |
| // on POSIX and non-POSIX OSes like MS Windows.
 | |
| func OpenFile(name string) (file *os.File, err error) {
 | |
| 	return os.Open(name)
 | |
| }
 |