mirror of
				https://github.com/containers/podman.git
				synced 2025-11-04 08:56:05 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			294 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			294 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build !linux && !windows
 | 
						|
 | 
						|
package specgen
 | 
						|
 | 
						|
func shouldResolveWinPaths() bool {
 | 
						|
	return false
 | 
						|
}
 | 
						|
 | 
						|
func shouldResolveUnixWinVariant(path string) bool {
 | 
						|
	return false
 | 
						|
}
 | 
						|
 | 
						|
func resolveRelativeOnWindows(path string) string {
 | 
						|
	return path
 | 
						|
}
 | 
						|
 | 
						|
func winPathExists(path string) bool {
 | 
						|
	return false
 | 
						|
}
 |