mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-06 00:45:43 +00:00
19 lines
294 B
Go
19 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
|
|
}
|