podman-build/pkg/specgen/winpath_unsupported.go
2025-10-11 12:30:35 +09:00

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
}