github.com/containers/podman/v4@v4.9.4/pkg/specgen/winpath_unsupported.go (about)

     1  //go:build !linux && !windows
     2  // +build !linux,!windows
     3  
     4  package specgen
     5  
     6  func shouldResolveWinPaths() bool {
     7  	return false
     8  }
     9  
    10  func shouldResolveUnixWinVariant(path string) bool {
    11  	return false
    12  }
    13  
    14  func resolveRelativeOnWindows(path string) string {
    15  	return path
    16  }
    17  
    18  func winPathExists(path string) bool {
    19  	return false
    20  }