mirror of
				https://github.com/k3s-io/kubernetes.git
				synced 2025-10-31 05:40:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			179 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			179 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !cgo,!plan9 windows android
 | |
| 
 | |
| package sftp
 | |
| 
 | |
| import (
 | |
| 	"os"
 | |
| 	"path"
 | |
| )
 | |
| 
 | |
| func runLs(dirname string, dirent os.FileInfo) string {
 | |
| 	return path.Join(dirname, dirent.Name())
 | |
| }
 |