mirror of
https://github.com/containers/podman.git
synced 2025-05-20 00:27:03 +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
|
|
}
|