Files
podman/pkg/specgen/winpath_unsupported.go
2025-10-01 10:42:08 -04:00

20 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
}