mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-08 01:45:43 +00:00
19 lines
288 B
Go
19 lines
288 B
Go
//go:build !linux && !windows
|
|
|
|
package specgen
|
|
|
|
func shouldResolveWinPaths() bool {
|
|
return false
|
|
}
|
|
|
|
func shouldResolveUnixWinVariant(_ string) bool {
|
|
return false
|
|
}
|
|
|
|
func resolveRelativeOnWindows(path string) string {
|
|
return path
|
|
}
|
|
|
|
func winPathExists(_ string) bool {
|
|
return false
|
|
}
|